Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
zprobst committed Jan 4, 2024
1 parent aa67564 commit 79246e5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ venv: poetry.lock

.PHONY: format
format: venv
poetry run black nodestream tests
poetry run isort nodestream tests
poetry run black nodestream_plugin_dotenv tests
poetry run isort nodestream_plugin_dotenv tests

.PHONY: lint
lint: venv
poetry run black nodestream tests --check
poetry run ruff nodestream tests
poetry run black nodestream_plugin_dotenv tests --check
poetry run ruff nodestream_plugin_dotenv tests

.PHONY: test-unit
test-unit: venv
poetry run pytest
poetry run pytest -m "not e2e"

0 comments on commit 79246e5

Please sign in to comment.