File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ Publishing new versions to [PyPI](https://pypi.org/project/apify) is automated t
143143
144144``` toml
145145[project ]
146- name = " crawlee "
146+ name = " apify "
147147version = " x.z.y"
148148```
149149
Original file line number Diff line number Diff line change 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 integration-tests format \
2+ 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
45INTEGRATION_TESTS_CONCURRENCY = 1
@@ -25,13 +26,13 @@ type-check:
2526 uv run mypy
2627
2728unit-tests :
28- uv run pytest --numprocesses=auto --verbose --cov=src/crawlee tests/unit
29+ uv run pytest --numprocesses=auto --verbose --cov=src/apify tests/unit
2930
3031unit-tests-cov :
31- uv run pytest --numprocesses=auto --verbose --cov=src/crawlee --cov-report=html tests/unit
32+ uv run pytest --numprocesses=auto --verbose --cov=src/apify --cov-report=html tests/unit
3233
3334integration-tests :
34- uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) tests/integration
35+ uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) --verbose tests/integration
3536
3637format :
3738 uv run ruff check --fix
@@ -48,4 +49,4 @@ build-docs:
4849 cd website && corepack enable && yarn && uv run yarn build
4950
5051run-docs : build-api-reference
51- cd website && corepack enable && yarn && uv run yarn start
52+ cd website && uv run npm clean-install && uv run npm run start
You can’t perform that action at this time.
0 commit comments