From a4721498ee227f85119dd90fcd407fb0ce917619 Mon Sep 17 00:00:00 2001 From: Mattijn van Hoek Date: Thu, 9 Jun 2022 13:17:49 +0200 Subject: [PATCH] Delete .travis.yml (#161) This PR removes CI by Travis and moved CI to GitHub action. See https://github.com/mattijn/topojson/blob/master/.github/workflows/test.yml for the new workflow. --- .travis.yml | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 51834d5..0000000 --- a/.travis.yml +++ /dev/null @@ -1,15 +0,0 @@ -language: python -cache: pip -python: - - "3.6" - - "3.7" -dist: xenial - -jobs: -before_install: - - pip install -U pip flit codecov pytest flake8 -install: - - flit install --deps develop -script: flake8 topojson -script: python -m pytest tests -after_success: codecov