diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index f95b230c..00000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: python -sudo: required -dist: xenial -env: - - COVERAGE_PROCESS_START=1 -python: - - "2.7" - - "3.6" - - "3.8" - # command to install dependencies -install: - - "pip install nose-cov" - - "pip install tissue" - - "pip install coveralls" - - "pip install ." - # command to run tests -script: - - nosetests --with-cov --with-tissue --cov=pabot --cov-report term-missing -after_success: - - coveralls diff --git a/.travis/sitecustomize.py b/.travis/sitecustomize.py deleted file mode 100644 index e6973980..00000000 --- a/.travis/sitecustomize.py +++ /dev/null @@ -1,6 +0,0 @@ -# When testrunner.py is invoked with --coverage, it puts this first -# on the path as per https://coverage.readthedocs.io/en/coverage-4.0b3/subprocess.html. -# Note that this disables other sitecustomize.py files. -import coverage - -coverage.process_startup()