Skip to content

Commit 1429d56

Browse files
committed
fixes
1 parent f4271aa commit 1429d56

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Publishing new versions to [PyPI](https://pypi.org/project/apify) is automated t
134134

135135
### Publishing to PyPI manually
136136

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.
138138
2. **Make sure you know what you're doing.**
139139

140140
3. Update the version number:
@@ -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"
147147
version = "x.z.y"
148148
```
149149

Makefile

Lines changed: 6 additions & 5 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
@@ -25,13 +26,13 @@ type-check:
2526
uv run mypy
2627

2728
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
2930

3031
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
3233

3334
integration-tests:
34-
uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) tests/integration
35+
uv run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) --verbose tests/integration
3536

3637
format:
3738
uv run ruff check --fix
@@ -48,4 +49,4 @@ build-docs:
4849
cd website && corepack enable && yarn && uv run yarn build
4950

5051
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

0 commit comments

Comments
 (0)