Skip to content

Commit 4c05cee

Browse files
authored
Merge branch 'master' into new-storage-clients
2 parents ce1eeb1 + 85df7d0 commit 4c05cee

File tree

3 files changed

+366
-353
lines changed

3 files changed

+366
-353
lines changed

Makefile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,13 @@ type-check:
3030
uv run mypy
3131

3232
unit-tests:
33-
uv run pytest -m "run_alone" -vv tests/unit
34-
uv run pytest -m "not run_alone" --numprocesses=auto -vv --cov=src/crawlee tests/unit
33+
uv run pytest --numprocesses=1 -vv tests/unit -m "run_alone"
34+
uv run pytest --numprocesses=auto -vv tests/unit -m "not run_alone"
3535

3636
unit-tests-cov:
37-
uv run pytest -m "not run_alone" --numprocesses=auto -vv --cov=src/crawlee --cov-report=html tests/unit
38-
37+
uv run pytest --numprocesses=1 -vv --cov=src/crawlee tests/unit -m "run_alone"
38+
uv run pytest --numprocesses=auto -vv --cov=src/crawlee --cov-append --cov-report=html tests/unit -m "not run_alone"
39+
3940
e2e-templates-tests $(args):
4041
uv run pytest --numprocesses=$(E2E_TESTS_CONCURRENCY) -vv tests/e2e/project_template "$(args)"
4142

@@ -54,4 +55,4 @@ build-docs:
5455
cd website && corepack enable && yarn && uv run yarn build
5556

5657
run-docs: build-api-reference
57-
cd website && corepack enable && yarn && uv run yarn start
58+
cd website && corepack enable && yarn && uv run yarn start

website/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"devDependencies": {
1919
"@apify/eslint-config-ts": "^0.4.0",
2020
"@apify/tsconfig": "^0.1.0",
21-
"@docusaurus/module-type-aliases": "3.8.0",
22-
"@docusaurus/types": "3.8.0",
21+
"@docusaurus/module-type-aliases": "3.8.1",
22+
"@docusaurus/types": "3.8.1",
2323
"@types/react": "^19.0.0",
2424
"@typescript-eslint/eslint-plugin": "8.34.0",
2525
"@typescript-eslint/parser": "8.34.0",
@@ -36,12 +36,12 @@
3636
"dependencies": {
3737
"@apify/docusaurus-plugin-typedoc-api": "^4.4.5",
3838
"@apify/utilities": "^2.8.0",
39-
"@docusaurus/core": "^3.8.0",
40-
"@docusaurus/faster": "^3.8.0",
41-
"@docusaurus/mdx-loader": "^3.8.0",
42-
"@docusaurus/plugin-client-redirects": "^3.8.0",
43-
"@docusaurus/preset-classic": "^3.8.0",
44-
"@docusaurus/theme-mermaid": "^3.8.0",
39+
"@docusaurus/core": "3.8.1",
40+
"@docusaurus/faster": "3.8.1",
41+
"@docusaurus/mdx-loader": "3.8.1",
42+
"@docusaurus/plugin-client-redirects": "3.8.1",
43+
"@docusaurus/preset-classic": "3.8.1",
44+
"@docusaurus/theme-mermaid": "3.8.1",
4545
"@giscus/react": "^3.0.0",
4646
"@mdx-js/react": "^3.0.1",
4747
"axios": "^1.5.0",
@@ -60,5 +60,5 @@
6060
"stream-browserify": "^3.0.0",
6161
"unist-util-visit": "^5.0.0"
6262
},
63-
"packageManager": "yarn@4.9.1"
63+
"packageManager": "yarn@4.9.2"
6464
}

0 commit comments

Comments
 (0)