diff --git a/.gitignore b/.gitignore index d6a74afd8..784a1b2a8 100644 --- a/.gitignore +++ b/.gitignore @@ -77,9 +77,12 @@ msbuild.wrn # Visual Studio 2015 .vs/ - # Test caches .pytest_cache/ .tox/ # Packages *.zip + +# Temporary files +*.new +*.orig diff --git a/.travis.yml b/.travis.yml index 895df6915..cc011a0eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,13 +8,13 @@ python: sudo: false env: - PYTHONPATH: plugin.video.vrt.nu + PYTHONPATH: . install: - pip install -r requirements.txt script: - tox -- pylint plugin.video.vrt.nu/*.py -- pylint plugin.video.vrt.nu/resources/lib/*/*.py -- python plugin.video.vrt.nu/vrtnutests/vrtplayertests.py +- pylint *.py +- pylint resources/lib/*/*.py +- python test/vrtplayertests.py