diff --git a/.gitignore b/.gitignore index be901520..1f10a2bf 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ __pycache__ .envrc .python-version +poetry.toml +poetry.lock + *.egg-info/ *.egg dist/ diff --git a/Makefile b/Makefile index 961bb3e1..768a2c8f 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ unit-tests-cov: poetry run pytest --numprocesses=auto --verbose --cov=src/apify --cov-report=html tests/unit integration-tests: - poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) tests/integration + poetry run pytest --numprocesses=$(INTEGRATION_TESTS_CONCURRENCY) --verbose tests/integration format: poetry run ruff check --fix $(DIRS_WITH_CODE) diff --git a/src/apify/__init__.py b/src/apify/__init__.py index a88db6bb..066d7d68 100644 --- a/src/apify/__init__.py +++ b/src/apify/__init__.py @@ -1,6 +1,7 @@ from importlib import metadata from apify_shared.consts import WebhookEventType +from crawlee import Request from crawlee.events._types import Event from apify._actor import Actor @@ -16,6 +17,7 @@ 'Configuration', 'ProxyConfiguration', 'ProxyInfo', + 'Request', 'Webhook', 'WebhookEventType', '__version__',