Skip to content

Commit

Permalink
Fix Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
mindflayer committed Nov 25, 2024
1 parent 3d2dcc6 commit dd12895
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ types:
test: types
@echo "Running Python tests"
uv pip uninstall pook || true
export VIRTUAL_ENV=.venv; .venv/bin/wait-for-it --service httpbin.local:443 --service localhost:6379 --timeout 5 -- .venv/bin/pytest
.venv/bin/wait-for-it --service httpbin.local:443 --service localhost:6379 --timeout 5 -- .venv/bin/pytest
uv pip install pook && .venv/bin/pytest tests/test_pook.py && uv pip uninstall pook
@echo ""

safetest:
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; .venv/bin/pytest

publish: clean install-test-requirements
uv run python3 -m build --sdist --wheel .
Expand Down

0 comments on commit dd12895

Please sign in to comment.