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 67
67
DATADIFF_BIGQUERY_URI : ' ${{ secrets.DATADIFF_BIGQUERY_URI }}'
68
68
DATADIFF_CLICKHOUSE_URI : ' clickhouse://clickhouse:Password1@localhost:9000/clickhouse'
69
69
DATADIFF_VERTICA_URI : ' vertica://vertica:Password1@localhost:5433/vertica'
70
+ DATADIFF_REDSHIFT_URI : ' ${{ secrets.DATADIFF_REDSHIFT_URI }}'
70
71
run : |
71
72
chmod +x tests/waiting_for_stack_up.sh
72
73
./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 8
8
# - '!dev/**'
9
9
pull_request :
10
10
branches : [ master ]
11
-
12
11
workflow_dispatch :
13
12
13
+ permissions :
14
+ id-token : write # This is required for requesting the JWT
15
+ contents : read # This is required for actions/checkout
16
+
14
17
jobs :
15
18
unit_tests :
16
19
strategy :
48
51
- name : ' Set up BigQuery Cloud SDK'
49
52
uses : ' google-github-actions/setup-gcloud@v1'
50
53
51
- # - name: 'Use gcloud CLI'
52
- # run: "gcloud config configurations list"
53
-
54
54
- name : " Install BigQuery for Python"
55
55
run : poetry add google-cloud-bigquery
56
56
63
63
DATADIFF_CLICKHOUSE_URI : ' clickhouse://clickhouse:Password1@localhost:9000/clickhouse'
64
64
DATADIFF_VERTICA_URI : ' vertica://vertica:Password1@localhost:5433/vertica'
65
65
DATADIFF_BIGQUERY_URI : ' ${{ secrets.DATADIFF_BIGQUERY_URI }}'
66
+ DATADIFF_REDSHIFT_URI : ' ${{ secrets.DATADIFF_REDSHIFT_URI }}'
66
67
run : |
67
68
chmod +x tests/waiting_for_stack_up.sh
68
69
./tests/waiting_for_stack_up.sh && poetry run unittest-parallel -j 16
Original file line number Diff line number Diff line change 25
25
TEST_SNOWFLAKE_CONN_STRING : str = os .environ .get ("DATADIFF_SNOWFLAKE_URI" ) or None
26
26
TEST_PRESTO_CONN_STRING : str = os .environ .get ("DATADIFF_PRESTO_URI" ) or None
27
27
TEST_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
29
29
TEST_ORACLE_CONN_STRING : str = None
30
30
TEST_DATABRICKS_CONN_STRING : str = os .environ .get ("DATADIFF_DATABRICKS_URI" )
31
31
TEST_TRINO_CONN_STRING : str = os .environ .get ("DATADIFF_TRINO_URI" ) or None
You can’t perform that action at this time.
0 commit comments