File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ Publishing new versions to [PyPI](https://pypi.org/project/apify) is automated t
134
134
135
135
### Publishing to PyPI manually
136
136
137
- 1 . ** Do not do this unless absolutely necessary.** In all conceivable scenarios, you should use the ` run_release ` workflow instead.
137
+ 1 . ** Do not do this unless absolutely necessary.** In all conceivable scenarios, you should use the ` release ` workflow instead.
138
138
2 . ** Make sure you know what you're doing.**
139
139
140
140
3 . Update the version number:
@@ -143,7 +143,7 @@ Publishing new versions to [PyPI](https://pypi.org/project/apify) is automated t
143
143
144
144
``` toml
145
145
[project ]
146
- name = " crawlee "
146
+ name = " apify "
147
147
version = " x.z.y"
148
148
```
149
149
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 \
2
+ integration-tests format check-code build-api-reference run-docs
2
3
3
4
# This is default for local testing, but GitHub workflows override it to a higher value in CI
4
5
INTEGRATION_TESTS_CONCURRENCY = 1
@@ -25,13 +26,13 @@ type-check:
25
26
uv run mypy
26
27
27
28
unit-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
29
30
30
31
unit-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
32
33
33
34
integration-tests :
34
- uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) tests/integration
35
+ uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) --verbose tests/integration
35
36
36
37
format :
37
38
uv run ruff check --fix
@@ -48,4 +49,4 @@ build-docs:
48
49
cd website && corepack enable && yarn && uv run yarn build
49
50
50
51
run-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