diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index e40cfa01..00000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -matrix: - include: - - language: python - python: - - "3.8" - install: - - pip install -U setuptools==45 - - pip install -r neurostore/requirements.txt - - pip install pytest-cov - script: - - python -m pytest neurostore/ --cov=./ - env: - - APP_SETTINGS=neurostore.config.TravisConfig PYTHONHASHSEED=0 - addons: - postgresql: "9.4" - before_script: - - cp neurostore/example_config.py neurostore/config.py - - psql -c 'create database travis_ci_test;' -U postgres - - CI="true" - after_success: - - bash <(curl -s https://codecov.io/bash)