This repository was archived by the owner on May 17, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed
Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 6767 DATADIFF_BIGQUERY_URI : ' ${{ secrets.DATADIFF_BIGQUERY_URI }}'
6868 DATADIFF_CLICKHOUSE_URI : ' clickhouse://clickhouse:Password1@localhost:9000/clickhouse'
6969 DATADIFF_VERTICA_URI : ' vertica://vertica:Password1@localhost:5433/vertica'
70+ DATADIFF_REDSHIFT_URI : ' ${{ secrets.DATADIFF_REDSHIFT_URI }}'
7071 run : |
7172 chmod +x tests/waiting_for_stack_up.sh
7273 ./tests/waiting_for_stack_up.sh && TEST_ACROSS_ALL_DBS=0 poetry run unittest-parallel -j 16
Original file line number Diff line number Diff line change 88# - '!dev/**'
99 pull_request :
1010 branches : [ master ]
11-
1211 workflow_dispatch :
1312
13+ permissions :
14+ id-token : write # This is required for requesting the JWT
15+ contents : read # This is required for actions/checkout
16+
1417jobs :
1518 unit_tests :
1619 strategy :
4851 - name : ' Set up BigQuery Cloud SDK'
4952 uses : ' google-github-actions/setup-gcloud@v1'
5053
51- # - name: 'Use gcloud CLI'
52- # run: "gcloud config configurations list"
53-
5454 - name : " Install BigQuery for Python"
5555 run : poetry add google-cloud-bigquery
5656
6363 DATADIFF_CLICKHOUSE_URI : ' clickhouse://clickhouse:Password1@localhost:9000/clickhouse'
6464 DATADIFF_VERTICA_URI : ' vertica://vertica:Password1@localhost:5433/vertica'
6565 DATADIFF_BIGQUERY_URI : ' ${{ secrets.DATADIFF_BIGQUERY_URI }}'
66+ DATADIFF_REDSHIFT_URI : ' ${{ secrets.DATADIFF_REDSHIFT_URI }}'
6667 run : |
6768 chmod +x tests/waiting_for_stack_up.sh
6869 ./tests/waiting_for_stack_up.sh && poetry run unittest-parallel -j 16
Original file line number Diff line number Diff line change 2525TEST_SNOWFLAKE_CONN_STRING : str = os .environ .get ("DATADIFF_SNOWFLAKE_URI" ) or None
2626TEST_PRESTO_CONN_STRING : str = os .environ .get ("DATADIFF_PRESTO_URI" ) or None
2727TEST_BIGQUERY_CONN_STRING : str = os .environ .get ("DATADIFF_BIGQUERY_URI" ) or None
28- TEST_REDSHIFT_CONN_STRING : str = None
28+ TEST_REDSHIFT_CONN_STRING : str = os . environ . get ( "DATADIFF_REDSHIFT_URI" ) or None
2929TEST_ORACLE_CONN_STRING : str = None
3030TEST_DATABRICKS_CONN_STRING : str = os .environ .get ("DATADIFF_DATABRICKS_URI" )
3131TEST_TRINO_CONN_STRING : str = os .environ .get ("DATADIFF_TRINO_URI" ) or None
You can’t perform that action at this time.
0 commit comments