We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e9ed7 commit be6332eCopy full SHA for be6332e
tox.ini
@@ -9,18 +9,19 @@ commands =
9
[testenv:coverage]
10
deps =
11
coveralls
12
- pytest
13
- pytest-cov
+ coverage
14
setenv =
15
COVERALLS_REPO_TOKEN = {env:COVERALLS_REPO_TOKEN}
+usedevelop = true
16
commands =
17
- pytest --disable-warnings --cov={envsitepackagesdir}/basilisp --cov-report html
+ coverage run --source=src/basilisp -m pytest --disable-warnings
18
+ coverage report
19
20
21
[testenv:mypy]
22
deps = mypy
23
skip_install = true
-commands =
24
+commands =
25
mypy --ignore-missing-imports --follow-imports=skip src/basilisp
26
27
[testenv:lint]
0 commit comments