2021-08-01 14:27:44 -07:00
|
|
|
# Run Integration Tests
|
|
|
|
|
|
|
|
{% hint style="info" %}
|
2021-08-12 17:45:27 +00:00
|
|
|
Make sure OpenMetadata is up and running
|
2021-08-01 14:27:44 -07:00
|
|
|
{% endhint %}
|
|
|
|
|
|
|
|
## Run MySQL test
|
|
|
|
|
|
|
|
```text
|
|
|
|
cd ingestion
|
|
|
|
source env/bin/activate
|
|
|
|
cd tests/integration/mysql
|
|
|
|
pytest -s -c /dev/null
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run MsSQL test
|
|
|
|
|
|
|
|
```text
|
|
|
|
cd ingestion
|
|
|
|
source env/bin/activate
|
|
|
|
cd tests/integration/mssql
|
|
|
|
pytest -s -c /dev/null
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run Postgres test
|
|
|
|
|
|
|
|
```text
|
|
|
|
cd ingestion
|
|
|
|
source env/bin/activate
|
|
|
|
cd tests/integration/postgres
|
|
|
|
pytest -s -c /dev/null
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run LDAP test
|
|
|
|
|
|
|
|
```text
|
|
|
|
cd ingestion
|
|
|
|
source env/bin/activate
|
|
|
|
cd tests/integration/ldap
|
|
|
|
pytest -s -c /dev/null
|
|
|
|
```
|
|
|
|
|
|
|
|
## Run Hive test
|
|
|
|
|
|
|
|
```text
|
|
|
|
cd ingestion
|
|
|
|
source env/bin/activate
|
|
|
|
cd tests/integration/hive
|
|
|
|
pytest -s -c /dev/null
|
|
|
|
```
|
|
|
|
|