-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add env vars to set for integration test
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,6 +111,16 @@ To run the integration tests for the first time, use: | |
export AIRFLOW_HOME=`pwd` | ||
export AIRFLOW_CONN_AIRFLOW_DB=postgres://postgres:[email protected]:5432/postgres | ||
export DATABRICKS_HOST='' | ||
export DATABRICKS_TOKEN='' | ||
export DATABRICKS_WAREHOUSE_ID='' | ||
export DATABRICKS_CLUSTER_ID='' | ||
export POSTGRES_PORT=5432 | ||
export POSTGRES_SCHEMA=public | ||
export POSTGRES_DB=postgres | ||
export POSTGRES_PASSWORD=postgres | ||
export POSTGRES_USER=postgres | ||
export POSTGRES_HOST=localhost | ||
hatch run tests.py3.8-2.5:test-integration-setup | ||
hatch run tests.py3.8-2.5:test-integration | ||
|