diff --git a/.pip_requirements.txt b/.ci_pip_reqs.txt similarity index 100% rename from .pip_requirements.txt rename to .ci_pip_reqs.txt diff --git a/.github/workflows/ci_tests.yml b/.github/workflows/ci_tests.yml index 8c63281f..bfcbefaf 100644 --- a/.github/workflows/ci_tests.yml +++ b/.github/workflows/ci_tests.yml @@ -21,13 +21,13 @@ jobs: uses: actions/cache@v1 with: path: ~/.cache/pip - key: ${{ runner.os }}-${{ hashFiles('**/.pip_requirements.txt') }}-${{ hashFiles('**/setup.py') }} + key: ${{ runner.os }}-${{ hashFiles('**/.ci_pip_reqs.txt') }}-${{ hashFiles('**/setup.py') }} restore-keys: | ${{ runner.os }}- - name: Install dependencies run: | python -m pip install --upgrade pip - pip install -r .pip_requirements.txt + pip install -r .ci_pip_reqs.txt pip install -e .[reports] - name: Run tests run: | diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8ba30a46..00000000 --- a/.travis.yml +++ /dev/null @@ -1,24 +0,0 @@ -language: python - -python: -- '3.6' - -install: -- pip install -U -r ./.travis_pip_reqs.txt -- pip install -e .[reports] - -script: -- pytest --cov -- python3 -m flake8 --exclude=build,doc,example,tmp --extend-ignore=F403,F405 - -after_success: -- codecov - -deploy: - provider: pypi - username: yannik.schaelte - password: - secure: ewDnxKZIfntva4OURTnNGyCRcUQPvmj0RC9B54YoXgPtiTLirW3CyqfFhzUpNG8JWgK/2fiZhnNQjncDlreynhPre7CZPL/3Dp7oLBsCcFyzcu7gGCBSiCO9EbOG64VU3C7O4MVaxlas1mi3RegZm4SGRoOtg8uHhYbToz6FIBKYZ3uLkHlxrBQVCi669bDQrBb1M5K6AAf3b9cYlIW9rS7AeU0PZ4fuPU4SK++7Auhji6fhtOfAvKw9JwGxMKYL88hAOiEF7p9IyMl/tzRF8woP64spLjXC/5jmS6H2yaZmXT5XFEugRtCbWMo+l3cbG2LLtYkHt0yCQXJaxvFm+xOrbMt/5+8ynQ8AHzpjXHn1tWyQxC3GCFucRG0wY+6c4w7O1fS3DEikp/1ttj/wX88Nc25wuxIVb9dlMvGf6f6Mdy5wwfxuvuluaL9mDLR8Xmc17HArQqg1V6DGF+btkwQCPa/ZoU3WVItT52lEWDlO+2+8uj1O8yUUSHiAnCTNNreGUFP8x/sgduFMG3syo7wG5OX3l1HMPeLoWEBtc/I0AP7thmH0Rfj7EuyyQ+uJLJI1ugX+AOgGKQUOz5ikrggfKqHdTklaGVNNdoN67v8kNzrMFshdFWVm+SejczUgWbFQ4cOMhCW98RqN3lb6yvoO2i8lIhKY0KIfoYCrYN0= - on: - branch: master - tags: true diff --git a/.travis_pip_reqs.txt b/.travis_pip_reqs.txt deleted file mode 100644 index 6e6c43d9..00000000 --- a/.travis_pip_reqs.txt +++ /dev/null @@ -1,9 +0,0 @@ -pytest -pytest-cov -codecov -flake8 -sphinx -sphinxcontrib-napoleon -sphinx-markdown-tables -sphinx-rtd-theme -recommonmark