diff options
author | Chris Dent <cdent@anticdent.org> | 2023-04-30 12:15:40 +0100 |
---|---|---|
committer | Chris Dent <cdent@anticdent.org> | 2023-04-30 12:15:40 +0100 |
commit | 9752a54873dcf3e4a604413c65c30cde2c0fdc06 (patch) | |
tree | e40622cf6a8167ea54c098a3db2361c6dab96b8c | |
parent | e7c573d1723be6425bdcbf65caf2daba8d6a2865 (diff) | |
download | paste-git-cdent/git-actions.tar.gz |
fail fast againcdent/git-actions
-rw-r--r-- | .github/workflows/tests.yaml | 1 | ||||
-rw-r--r-- | .travis.yml | 28 |
2 files changed, 0 insertions, 29 deletions
diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 759e695..a352171 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -4,7 +4,6 @@ jobs: build: runs-on: ubuntu-20.04 strategy: - fail-fast: false matrix: include: - python: 2.7 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 6655569..0000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -sudo: false -language: python -install: - - pip install tox -script: - - tox -matrix: - include: - - python: 2.7 - env: TOXENV=py27-coverage - - python: 3.5 - env: TOXENV=py35-coverage - - python: 3.6 - env: TOXENV=py36-coverage - - python: 3.7 - env: TOXENV=py37-coverage - - python: 3.8 - env: TOXENV=py38-coverage - - python: pypy - env: TOXENV=pypy-coverage - -after_success: - - | - flags=${TOXENV%-coverage} - if [[ "$flags" != "$TOXENV" ]]; then - .tox/$TOXENV/bin/coverage xml - bash <(curl -s https://codecov.io/bash) -Z -X gcov -X search -X xcode -X fix -X coveragepy -f coverage.xml -F "$flags" - fi |