summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Mueller <30130371+cdce8p@users.noreply.github.com>2021-02-19 23:57:14 +0100
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-02-20 15:08:49 +0100
commit8319f8a9feb0500370fb711297ae56319727a222 (patch)
treea7ec490fde58386c38658553546098c6edc0f4a5
parentea9638d63e2a76ae43d273337c09c983ae8076d9 (diff)
downloadpylint-git-8319f8a9feb0500370fb711297ae56319727a222.tar.gz
Remove unnecessary checks
-rw-r--r--.github/workflows/ci.yaml2
-rw-r--r--.travis.yml19
-rw-r--r--appveyor.yml5
3 files changed, 6 insertions, 20 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 94ab0759c..4929ce467 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -317,7 +317,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
. venv/bin/activate
- coveralls debug --rcfile=${{ env.COVERAGERC_FILE }} --service=github
+ coveralls --rcfile=${{ env.COVERAGERC_FILE }} --service=github
pytest-windows:
diff --git a/.travis.yml b/.travis.yml
index 3ba9f2e45..e4adcca4c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,27 +1,11 @@
language: python
stages:
-- prechecks
- tests-cpython
-- tests-pypy
jobs:
include:
- - stage: prechecks
- python: 3.6
- env: TOXENV=docs
- - python: 3.6
- env: TOXENV=spelling
- stage: tests-cpython
python: 3.6
env: TOXENV=py36
- - python: 3.7
- env: TOXENV=py37
- - python: 3.8
- env: TOXENV=py38
- - python: 3.9
- env: TOXENV=py39
- - stage: tests-pypy
- python: pypy3
- env: TOXENV=pypy
before_install:
- python --version
- uname -a
@@ -41,9 +25,6 @@ install:
- coverage --version
script:
- pip install .
-- tox -e coverage-erase,$TOXENV
-after_success:
-- tox -e coveralls
after_failure:
- more .tox/log/* | cat
- more .tox/*/log/* | cat
diff --git a/appveyor.yml b/appveyor.yml
index 9794d235c..1ef573609 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,4 +1,9 @@
version: '{branch}-{build}'
+
+# Don't use appveyor at all! Only until file can be removed.
+skip_tags: true
+skip_non_tags: true
+
build: off
cache:
- 'C:\\tmp'