Skip to content

Commit d54bc0a

Browse files
committed
fixes
1 parent 92cee77 commit d54bc0a

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Makefile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
.PHONY: clean install-dev build publish-to-pypi lint type-check unit-tests unit-tests-cov integration-tests format check-code build-api-reference run-docs
1+
.PHONY: clean install-dev build publish-to-pypi lint type-check unit-tests unit-tests-cov \
2+
integration-tests format check-code build-api-reference run-docs
23

34
# This is default for local testing, but GitHub workflows override it to a higher value in CI
45
INTEGRATION_TESTS_CONCURRENCY = 1
@@ -13,7 +14,7 @@ install-dev:
1314
uv run python -m browserforge update
1415

1516
build:
16-
uv build --no-cache
17+
uv build --no-cache --verbose
1718

1819
# APIFY_PYPI_TOKEN_CRAWLEE is expected to be set in the environment
1920
publish-to-pypi:
@@ -33,7 +34,7 @@ unit-tests-cov:
3334
uv run pytest --numprocesses=auto --verbose --cov=src/crawlee --cov-report=html tests/unit
3435

3536
integration-tests:
36-
uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) tests/integration
37+
uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) --verbose tests/integration
3738

3839
format:
3940
uv run ruff check --fix

0 commit comments

Comments
 (0)