mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-18 02:40:07 +00:00
Just codechecks.
This commit is contained in:
parent
3255f93a5c
commit
6190399aef
@ -44,7 +44,7 @@ workflows:
|
||||
# {}
|
||||
|
||||
# Other assorted tasks and configurations
|
||||
- "codechecks3":
|
||||
- "codechecks":
|
||||
{}
|
||||
- "pyinstaller":
|
||||
{}
|
||||
@ -128,7 +128,7 @@ jobs:
|
||||
# Since this job is never scheduled this step is never run so the
|
||||
# actual value here is irrelevant.
|
||||
|
||||
codechecks3:
|
||||
codechecks:
|
||||
docker:
|
||||
- <<: *DOCKERHUB_AUTH
|
||||
image: "cimg/python:3.9"
|
||||
@ -144,7 +144,7 @@ jobs:
|
||||
- run:
|
||||
name: "Static-ish code checks"
|
||||
command: |
|
||||
~/.local/bin/tox -e codechecks3
|
||||
~/.local/bin/tox -e codechecks
|
||||
|
||||
pyinstaller:
|
||||
docker:
|
||||
|
2
Makefile
2
Makefile
@ -33,7 +33,7 @@ default:
|
||||
## Run all tests and code reports
|
||||
test: .tox/create-venvs.log
|
||||
# Run codechecks first since it takes the least time to report issues early.
|
||||
tox --develop -e codechecks3
|
||||
tox --develop -e codechecks
|
||||
# Run all the test environments in parallel to reduce run-time
|
||||
tox --develop -p auto -e 'py37'
|
||||
.PHONY: test-venv-coverage
|
||||
|
@ -122,7 +122,7 @@ they will need to evaluate which contributors' signatures they trust.
|
||||
|
||||
- these should all pass:
|
||||
|
||||
- tox -e py37,codechecks3,docs,integration
|
||||
- tox -e py37,codechecks,docs,integration
|
||||
|
||||
- these can fail (ideally they should not of course):
|
||||
|
||||
|
6
tox.ini
6
tox.ini
@ -7,7 +7,7 @@
|
||||
# the tox-gh-actions package.
|
||||
[gh-actions]
|
||||
python =
|
||||
3.7: py37-coverage,typechecks,codechecks3
|
||||
3.7: py37-coverage,typechecks,codechecks
|
||||
3.8: py38-coverage
|
||||
3.9: py39-coverage
|
||||
pypy-3.7: pypy3
|
||||
@ -16,7 +16,7 @@ python =
|
||||
twisted = 1
|
||||
|
||||
[tox]
|
||||
envlist = typechecks,codechecks3,py{37,38,39}-{coverage},pypy27,pypy3,integration,integration3
|
||||
envlist = typechecks,codechecks,py{37,38,39}-{coverage},pypy27,pypy3,integration,integration3
|
||||
minversion = 2.4
|
||||
|
||||
[testenv]
|
||||
@ -107,7 +107,7 @@ commands =
|
||||
coverage report
|
||||
|
||||
|
||||
[testenv:codechecks3]
|
||||
[testenv:codechecks]
|
||||
basepython = python3
|
||||
deps =
|
||||
# Newer versions of PyLint have buggy configuration
|
||||
|
Loading…
Reference in New Issue
Block a user