1
0
mirror of synced 2026-01-10 09:04:48 -05:00

GitBook: [master] 161 pages and 75 assets modified

This commit is contained in:
Marcos Marx
2021-05-16 22:51:02 +00:00
committed by gitbook-bot
parent 18c1d6eb1b
commit a18b0e80d0
77 changed files with 1322 additions and 124 deletions

View File

@@ -0,0 +1,18 @@
# Step 8: Test Connector
## Unit Tests
Add any relevant unit tests to the `unit_tests` directory. Unit tests should **not** depend on any secrets.
You can run the tests using `python -m pytest -s unit_tests`
## Integration Tests
Place any integration tests in the `integration_tests` directory such that they can be [discovered by pytest](https://docs.pytest.org/en/reorganize-docs/new-docs/user/naming_conventions.html).
## Standard Tests
Standard tests are a fixed set of tests Airbyte provides that every Airbyte source connector must pass. While they're only required if you intend to submit your connector to Airbyte, you might find them helpful in any case. See [Testing your connectors](https://docs.airbyte.io/contributing-to-airbyte/building-new-connector/testing-connectors)
If you want to submit this connector to become a default connector within Airbyte, follow steps 8 onwards from the [Python source checklist](https://docs.airbyte.io/tutorials/tutorials/building-a-python-source#step-8-set-up-standard-tests)