From 09fc46b3cad16b5bf49edf8e7ae873794a959620 Mon Sep 17 00:00:00 2001 From: Tomo Krajina Date: Mon, 5 Aug 2024 14:54:00 +0200 Subject: [PATCH] Cleanup --- .travis.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index efaee300..00000000 --- a/.travis.yml +++ /dev/null @@ -1,37 +0,0 @@ -language: python -dist: xenial - -# Those without lxml wheels first because building lxml is slow -python: - - 3.6 - - 3.7 - - 3.8 - - 3.9 - -env: -- XMLPARSER=LXML -- XMLPARSER=STDLIB - - -install: -# Check whether to install lxml - - if [ "$XMLPARSER" == "LXML" ]; then pip install lxml; fi - - - travis_retry pip install coverage - - -script: - - coverage run --source=gpxpy ./test.py - -after_success: - - pip install coveralls - - coveralls - -after_script: - - coverage report - - pip install pyflakes pycodestyle - - pyflakes . | tee >(wc -l) - - pycodestyle --statistics --count . - -matrix: - fast_finish: true