Skip to content

Commit

Permalink
Renamed test/ to tests/.
Browse files Browse the repository at this point in the history
This is the common place for our Python unit tests,
no need for creativity here.

Change-Id: I61e2344d9920607c92bfe8afae7edd9ef599e0a9
  • Loading branch information
spt29 committed Oct 19, 2023
1 parent 808e19c commit 56aa639
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/werks/run
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ echo "run: install dependencies from Pipfile.lock"
pipenv sync --dev

echo "run: black"
pipenv run black --check --diff werks test
pipenv run black --check --diff werks tests

echo "run: isort"
pipenv run isort --check --diff werks test
pipenv run isort --check --diff werks tests

echo "run: tests"
pipenv run pytest test
pipenv run pytest tests

echo "run: mypy"
pipenv run mypy werks test
pipenv run mypy werks tests

echo "run: pylint"
pipenv run pylint werks test
pipenv run pylint werks tests

echo "run: bandit"
pipenv run bandit -c ../../bandit.yaml -ll -r .
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 56aa639

Please sign in to comment.