1
0
mirror of synced 2025-12-22 03:21:25 -05:00
Files
airbyte/airbyte-cdk/python/docs/tutorials/cdk-tutorial-python-http/8-test-your-connector.md
LiRen Tu 2906ec287a CI: Add action to check broken doc links (#5254)
* Add action to check broken doc links

* Ignore localhost

* Update config

* Fix broken links

* Use quiet mode

* Ignore PR link

* Fix more broken links

* Fix more broken links

* Fix more broken links

* Verify pattern

* Fix more broken links

* Separate full and pr check

* Update pattern

* Test invalid link

* Remove invalid link
2021-08-07 14:28:02 -07:00

1.0 KiB

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.

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

If you want to submit this connector to become a default connector within Airbyte, follow steps 8 onwards from the Python source checklist