From c765fb406f70378de9ea2e56c5fbfe90eb020711 Mon Sep 17 00:00:00 2001 From: Philip Mateescu Date: Sat, 5 Sep 2020 09:48:35 -0500 Subject: [PATCH] Remove travis.yml as it's made obsolete by GH actions --- .travis.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index ebafe26..0000000 --- a/.travis.yml +++ /dev/null @@ -1,23 +0,0 @@ -language: python -python: - - "3.6" - - "3.7" - - "nightly" - -before_install: - - pip install -r requirements-dev.txt - -# command to install dependencies -install: - - pip install -r requirements.txt - -# command to run tests -# Powershell: -# pycodestyle.exe @(gci -path .\*.py, .\parsers\*.py, .\mysql\*.py, .\postgresql\*.py | select -ExpandProperty fullname ) -script: - - pycodestyle *.py - - pycodestyle discogsxml2db/*.py - - pycodestyle mysql/*.py - - pycodestyle postgresql/*.py - - python -m py_compile *.py - - pytest -v