Skip to content

Commit dd12895

Browse files
committed
Fix Makefile.
1 parent 3d2dcc6 commit dd12895

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ types:
3131
test: types
3232
@echo "Running Python tests"
3333
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
34+
.venv/bin/wait-for-it --service httpbin.local:443 --service localhost:6379 --timeout 5 -- .venv/bin/pytest
3535
uv pip install pook && .venv/bin/pytest tests/test_pook.py && uv pip uninstall pook
3636
@echo ""
3737

3838
safetest:
39-
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; make test
39+
export SKIP_TRUE_REDIS=1; export SKIP_TRUE_HTTP=1; .venv/bin/pytest
4040

4141
publish: clean install-test-requirements
4242
uv run python3 -m build --sdist --wheel .

0 commit comments

Comments
 (0)