File tree Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Expand file tree Collapse file tree 3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 37
37
name : Unit tests
38
38
uses : apify/workflows/.github/workflows/python_unit_tests.yaml@main
39
39
40
+ async_docstrings :
41
+ name : Async dostrings check
42
+ uses : ./.github/workflows/_async_docstrings_check.yaml
43
+
40
44
integration_tests :
41
45
name : Integration tests
42
46
uses : apify/workflows/.github/workflows/python_integration_tests.yaml@main
Original file line number Diff line number Diff line change 56
56
name : Unit tests
57
57
uses : apify/workflows/.github/workflows/python_unit_tests.yaml@main
58
58
59
+ async_docstrings :
60
+ name : Async dostrings check
61
+ uses : ./.github/workflows/_async_docstrings_check.yaml
62
+
59
63
integration_tests :
60
64
name : Integration tests
61
65
uses : apify/workflows/.github/workflows/python_integration_tests.yaml@main
Original file line number Diff line number Diff line change 1
1
.PHONY : clean install-dev build publish-to-pypi lint type-check unit-tests unit-tests-cov \
2
2
integration-tests format check-code check-async-docstrings fix-async-docstrings \
3
- check-version-availability check-changelog-entry check-version-conflict build-api-reference \
4
- run-docs
3
+ build-api-reference run-docs
5
4
6
5
DIRS_WITH_CODE = src tests scripts
7
6
@@ -46,15 +45,9 @@ format:
46
45
check-async-docstrings :
47
46
poetry run python scripts/check_async_docstrings.py
48
47
49
- check-changelog-entry :
50
- poetry run python scripts/check_changelog_entry.py
51
-
52
- check-version-conflict :
53
- poetry run python scripts/check_version_conflict.py
54
-
55
48
# The check-code target runs a series of checks equivalent to those performed by pre-commit hooks
56
49
# and the run_checks.yaml GitHub Actions workflow.
57
- check-code : lint type-check unit-tests check-async-docstrings check-changelog-entry check-version-conflict
50
+ check-code : lint type-check unit-tests check-async-docstrings
58
51
59
52
fix-async-docstrings :
60
53
poetry run python scripts/fix_async_docstrings.py
You can’t perform that action at this time.
0 commit comments