From 3931bc4b737510abed0b5c0e358c448ad1ee00e3 Mon Sep 17 00:00:00 2001 From: Jaremy Hatler Date: Fri, 22 Dec 2023 22:46:53 -0500 Subject: [PATCH] fix: update tox workflow to use src/betamax path 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: #203, cf6aefe Signed-off-by: Jaremy Hatler --- tox.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index f0be6bd..6f10ae8 100644 --- a/tox.ini +++ b/tox.ini @@ -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 =