Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/build-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
- main
- dev
- demo
paths:
- 'code/**'
- '!code/tests/**'
- 'docker/**'
- 'package.json'
- 'pyproject.toml'
- '.github/workflows/build-docker-images.yml'
- '.github/workflows/build-docker.yml'
pull_request:
branches:
- main
Expand All @@ -16,6 +24,13 @@ on:
- ready_for_review
- reopened
- synchronize
paths:
- 'code/**'
- 'docker/**'
- 'package.json'
- 'pyproject.toml'
- '.github/workflows/build-docker-images.yml'
- '.github/workflows/build-docker.yml'
merge_group:
workflow_dispatch:

Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ on:
- main
- dev
- demo
paths:
- 'infra/**'
- 'scripts/**'
- 'azure.yaml'
- 'pyproject.toml'
- 'Makefile'
- '.github/workflows/ci.yml'
schedule:
- cron: '0 8,20 * * *' # Runs at 8:00 AM and 8:00 PM GMT
workflow_dispatch:
Expand Down
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,20 @@ name: Test Workflow with Coverage
on:
push:
branches: [main, dev, demo]
paths:
- 'code/**'
- 'pyproject.toml'
- 'package.json'
- 'pytest.ini'
- '.github/workflows/tests.yml'
pull_request:
branches: [main, dev, demo]
paths:
- 'code/**'
- 'pyproject.toml'
- 'package.json'
- 'pytest.ini'
- '.github/workflows/tests.yml'
types:
- opened
- ready_for_review
Expand Down
1 change: 1 addition & 0 deletions tests/e2e-test/config/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# This file makes the config directory a Python package
2 changes: 1 addition & 1 deletion tests/e2e-test/config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# note: may have to remove 'tests/e2e-test' from below when running locally
json_file_path = os.path.join(
repo_root, "tests/e2e-test", "testdata", "golden_path_data.json"
)
)

# Load questions from JSON file
with open(json_file_path, "r") as file:
Expand Down
Loading
Loading