File tree Expand file tree Collapse file tree
projects/policyengine-api-simulation/tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515
1616jobs :
1717 build_simulation_api_image :
18+ name : Build simulation API image
1819 runs-on : ubuntu-latest
1920 environment : ${{ inputs.environment }}
20- name : Build simulation API image
2121
2222 permissions :
2323 contents : " read"
5555 platforms : linux/amd64
5656
5757 build_full_api_image :
58+ name : Build full API image
5859 runs-on : ubuntu-latest
5960 environment : ${{ inputs.environment }}
60- name : Build full API image
6161
6262 permissions :
6363 contents : " read"
9595 platforms : linux/amd64
9696
9797 build_tagger_api_image :
98+ name : Build tagger API image
9899 runs-on : ubuntu-latest
99100 environment : ${{ inputs.environment }}
100- name : Build tagger API image
101101
102102 permissions :
103103 contents : " read"
Original file line number Diff line number Diff line change 1919
2020jobs :
2121 deploy :
22- runs-on : ubuntu-latest
2322 name : Deploy
23+ runs-on : ubuntu-latest
2424 outputs :
2525 full_api_url : ${{ steps.deploy_infra.outputs.full_api_url }}
2626 simulation_api_url : ${{ steps.deploy_infra.outputs.simulation_api_url }}
@@ -116,8 +116,8 @@ jobs:
116116 echo "simulation_api_url=${SIMULATION_API_URL}" >> "$GITHUB_OUTPUT"
117117
118118 integ_test :
119- needs : [deploy]
120119 name : Run integration test
120+ needs : [deploy]
121121 runs-on : ubuntu-latest
122122 environment : ${{ inputs.environment }}
123123
Original file line number Diff line number Diff line change 66
77jobs :
88 test :
9+ name : Test
910 runs-on : ubuntu-latest
1011 strategy :
1112 matrix :
3536 uv run pytest tests/ -v
3637
3738 lint :
39+ name : Lint
3840 runs-on : ubuntu-latest
3941
4042 steps :
6163 done
6264
6365 docker-build :
66+ name : Docker build
6467 runs-on : ubuntu-latest
6568 strategy :
6669 matrix :
Original file line number Diff line number Diff line change 1+ """Placeholder test to ensure test suite runs."""
2+
3+
4+ def test_placeholder ():
5+ """Placeholder test that always passes."""
6+ assert True
You can’t perform that action at this time.
0 commit comments