Skip to content

Commit

Permalink
fix: update tox workflow to use src/betamax path (#5)
Browse files Browse the repository at this point in the history
The betamax directory was moved into the src directory but the tox
workflow was not updated to reflect this change. This commit updates
the tox workflow to use the new path.

Refs: betamaxpy#203, cf6aefe
Signed-off-by: Jaremy Hatler <hatler.jaremy@gmail.com>
  • Loading branch information
jhatler committed Dec 23, 2023
1 parent 0f5d51b commit a10f631
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,19 @@ commands = py.test {posargs}
basepython = python2.7
deps =
flake8
commands = flake8 {posargs} betamax
commands = flake8 {posargs} src/betamax

[testenv:py37-flake8]
basepython = python3.7
deps =
flake8
commands = flake8 {posargs} betamax
commands = flake8 {posargs} src/betamax

[testenv:docstrings]
deps =
flake8
flake8-docstrings
commands = flake8 {posargs} betamax
commands = flake8 {posargs} src/betamax

[testenv:release]
deps =
Expand Down

0 comments on commit a10f631

Please sign in to comment.