Skip to content

Commit 1f01278

Browse files
authored
feat: expose Request from Crawlee (#266)
I believe it will be needed.
1 parent 91c980f commit 1f01278

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ __pycache__
88
.envrc
99
.python-version
1010

11+
poetry.toml
12+
poetry.lock
13+
1114
*.egg-info/
1215
*.egg
1316
dist/

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ unit-tests-cov:
3434
poetry run pytest --numprocesses=auto --verbose --cov=src/apify --cov-report=html tests/unit
3535

3636
integration-tests:
37-
poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) tests/integration
37+
poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) --verbose tests/integration
3838

3939
format:
4040
poetry run ruff check --fix $(DIRS_WITH_CODE)

src/apify/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from importlib import metadata
22

33
from apify_shared.consts import WebhookEventType
4+
from crawlee import Request
45
from crawlee.events._types import Event
56

67
from apify._actor import Actor
@@ -16,6 +17,7 @@
1617
'Configuration',
1718
'ProxyConfiguration',
1819
'ProxyInfo',
20+
'Request',
1921
'Webhook',
2022
'WebhookEventType',
2123
'__version__',

0 commit comments

Comments
 (0)