From c4b1351a433f237ee2ee167709d802c9dac066df Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 13 Jan 2020 13:24:11 -0500 Subject: [PATCH] stop building on travis --- .travis.yml | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 8c57abc2f..000000000 --- a/.travis.yml +++ /dev/null @@ -1,51 +0,0 @@ -dist: xenial -language: python -python: "3.7" - -jobs: - include: - - - stage: code quality - name: "pylint & mypy" - install: - - make install tools - script: make lint - - - stage: test - name: "Unit Tests" - install: - - make install tools - script: - - HOME=/tmp coverage run -p --source=lbry -m unittest discover -vv tests.unit - - - name: "Integration Tests - Data Network" - install: - - pip install tox-travis - - sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp - script: tox -e datanetwork - - - name: "Integration Tests - Blockchain" - install: - - pip install tox-travis - - sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp - script: tox -e blockchain - - - name: "Integration Tests - Other" - install: - - pip install tox-travis - - sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp - script: tox -e other - - - name: "Run Examples" - install: - - make install tools - script: - - HOME=/tmp coverage run -p --source=lbry scripts/generate_json_api.py - -cache: - directories: - - $HOME/venv - - $HOME/.cache/pip - - $HOME/Library/Caches/pip - - $HOME/Library/Caches/Homebrew - - $TRAVIS_BUILD_DIR/.tox