Skip to content

Commit

Permalink
Fix invalid tox syntax (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreeve committed Jan 5, 2023
1 parent 92d3573 commit a4fb9a3
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[tox]
envlist = py{37,38,39,310},pycodestyle

[pycodestyle]
max-line-length = 120

[pytest]
# Disable running benchmarks by default
# (tests still run but no benchmarking done)
addopts = --benchmark-disable

[testenv]
deps =
pytest
coverage
passenv = CI GITHUB_* RUNNER_*
extras = test,pandas,hdf,thermocouple_scaling
commands =
coverage run -m pytest []
coverage report
coverage xml

[testenv:pycodestyle]
skip_install = True
deps = pycodestyle
commands =
pycodestyle ./nptdms
[tox]
envlist = py{37,38,39,310},pycodestyle

[pycodestyle]
max-line-length = 120

[pytest]
# Disable running benchmarks by default
# (tests still run but no benchmarking done)
addopts = --benchmark-disable

[testenv]
deps =
pytest
coverage
passenv = CI,GITHUB_*,RUNNER_*
extras = test,pandas,hdf,thermocouple_scaling
commands =
coverage run -m pytest []
coverage report
coverage xml

[testenv:pycodestyle]
skip_install = True
deps = pycodestyle
commands =
pycodestyle ./nptdms

0 comments on commit a4fb9a3

Please sign in to comment.