Skip to content

Commit 5ae654e

Browse files
committed
Added workflow
1 parent e748ae8 commit 5ae654e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/code-quality-checks.yml

+10
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ on:
99
jobs:
1010
run-unit-tests:
1111
runs-on: ubuntu-latest
12+
environment: azure-prod
13+
env:
14+
host: ${{ secrets.DATABRICKS_HOST }}
15+
http_path: ${{ secrets.TEST_PECO_WAREHOUSE_HTTP_PATH }}
16+
access_token: ${{ secrets.DATABRICKS_TOKEN }}
1217
strategy:
1318
matrix:
1419
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
@@ -59,6 +64,11 @@ jobs:
5964
#----------------------------------------------
6065
- name: Run tests
6166
run: poetry run python -m pytest tests/unit
67+
#----------------------------------------------
68+
# run test suite
69+
#----------------------------------------------
70+
- name: Run tests e2e
71+
run: poetry run python -m pytest tests/e2e
6272
check-linting:
6373
runs-on: ubuntu-latest
6474
strategy:

0 commit comments

Comments
 (0)