From 10df2b6e0e8b6bb6f2eca7fad41c000d744a69f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Wed, 30 Jun 2021 18:27:27 +0200 Subject: [PATCH] fix travis --- .travis.yml | 2 +- tests/test_series.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7d01420..27a0ce5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,8 @@ before_script: - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter - chmod +x ./cc-test-reporter - ./cc-test-reporter before-build + - pip install -U Cython satella snakehouse nose2 coverage - pip install -r requirements.txt - - pip install -U nose2 coverage Cython satella snakehouse - python setup.py build_ext --inplace jobs: include: diff --git a/tests/test_series.py b/tests/test_series.py index 6369091..773684a 100644 --- a/tests/test_series.py +++ b/tests/test_series.py @@ -91,7 +91,7 @@ class TestSeries(unittest.TestCase): def test_disable_enable_mmap(self): from tempsdb.series import create_series - series = create_series('test', 'test', 1, 10) + series = create_series('test-mmap', 'test-mmap', 1, 10) start, ts = 127, 100 for i in range(20): series.append(ts, bytes(bytearray([start]))) -- GitLab