We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Makefile
1 parent 3d2dcc6 commit dd12895Copy full SHA for dd12895
Makefile
@@ -31,12 +31,12 @@ types:
31
test: types
32
@echo "Running Python tests"
33
uv pip uninstall pook || true
34
- 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
35
uv pip install pook && .venv/bin/pytest tests/test_pook.py && uv pip uninstall pook
36
@echo ""
37
38
safetest:
39
- 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
40
41
publish: clean install-test-requirements
42
uv run python3 -m build --sdist --wheel .
0 commit comments