File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ __pycache__
8
8
.envrc
9
9
.python-version
10
10
11
+ poetry.toml
12
+ poetry.lock
13
+
11
14
* .egg-info /
12
15
* .egg
13
16
dist /
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ unit-tests-cov:
34
34
poetry run pytest --numprocesses=auto --verbose --cov=src/apify --cov-report=html tests/unit
35
35
36
36
integration-tests :
37
- poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) tests/integration
37
+ poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY ) --verbose tests/integration
38
38
39
39
format :
40
40
poetry run ruff check --fix $(DIRS_WITH_CODE )
Original file line number Diff line number Diff line change 1
1
from importlib import metadata
2
2
3
3
from apify_shared .consts import WebhookEventType
4
+ from crawlee import Request
4
5
from crawlee .events ._types import Event
5
6
6
7
from apify ._actor import Actor
16
17
'Configuration' ,
17
18
'ProxyConfiguration' ,
18
19
'ProxyInfo' ,
20
+ 'Request' ,
19
21
'Webhook' ,
20
22
'WebhookEventType' ,
21
23
'__version__' ,
You can’t perform that action at this time.
0 commit comments