Skip to content

Commit f075be2

Browse files
committed
More make mentions
1 parent 13c03ce commit f075be2

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

.github/workflows/_release_docs.yaml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,10 @@ jobs:
6868
python-version: ${{ env.PYTHON_VERSION }}
6969

7070
- name: Install Python dependencies
71-
run: make install-dev
71+
run: uv run poe install-dev
7272

73-
- name: Build generated API reference
74-
run: make build-api-reference
75-
76-
- name: Build Docusaurus docs
77-
run: make build-docs
73+
- name: Build docs
74+
run: uv run poe build-docs
7875
env:
7976
APIFY_SIGNING_TOKEN: ${{ secrets.APIFY_SIGNING_TOKEN }}
8077

tests/integration/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ There are two different groups of integration tests in this repository:
44
- Apify API integration tests. These test that the Apify SDK is correctly communicating with Apify API through Apify client.
55
- Actor integration tests. These test that the Apify SDK can be used in Actors deployed to Apify platform. These are very high level tests, and they test communication with the API and correct interaction with the Apify platform.
66

7-
To run these tests, you need to set the `APIFY_TEST_USER_API_TOKEN` environment variable to the API token of the Apify user you want to use for the tests, and then start them with `make integration-tests`.
7+
To run these tests, you need to set the `APIFY_TEST_USER_API_TOKEN` environment variable to the API token of the Apify user you want to use for the tests, and then start them with `uv run poe integration-tests`.
88

99
## Apify API integration tests
1010
The tests are making real requests to the Apify API as opposed to the unit tests that are mocking such API calls. On the other hand they are faster than `Actor integration tests` as they do not require building and deploying the Actor. These test can be also fully debugged locally. Preferably try to write integration tests on this level if possible.

0 commit comments

Comments
 (0)