Fix typing in URL construction by explicitely converting UUIDs to strings #31
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smoke test (PR) | |
on: | |
pull_request_target: | |
types: | |
- labeled | |
env: | |
python-version: "3.12" | |
concurrency: | |
group: "smoke-test" # Make sure, to not run multiple smoke tests at the same time | |
cancel-in-progress: false | |
jobs: | |
smoke_test_pr: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.label.name == 'run smoke test' }} | |
steps: | |
- name: Get User Permission | |
id: checkAccess | |
uses: actions-cool/check-user-permission@v2 | |
with: | |
require: read | |
username: ${{ github.triggering_actor }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Check User Permission | |
if: steps.checkAccess.outputs.require-result == 'false' | |
run: | | |
echo "${{ github.triggering_actor }} does not have permissions on this repo." | |
echo "Current permission level is ${{ steps.checkAccess.outputs.user-permission }}" | |
echo "Job originally triggered by ${{ github.actor }}" | |
exit 1 | |
- name: Checkout current code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ env.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.python-version }} | |
- name: Check secret access | |
run: | | |
if [[ "x${{ secrets.PASSWORD }}" != "x" ]]; then | |
echo "Access to secrets" | |
else | |
echo "No access to secrets" | |
exit 1 | |
fi | |
- run: pip install -r requirements.txt | |
- run: pip install -r requirements_test.txt | |
- name: Prepare empty headers | |
run: touch .headers | |
- name: Prepare headers with pytest | |
run: pytest smoke_test/test_1_setup_headers.py -v -x | |
env: | |
EMAIL: ${{ vars.EMAIL }} | |
PASSWORD: ${{ secrets.PASSWORD }} | |
LIST: ${{ vars.LIST }} | |
# !!!!!!!!!!!!!!!!!!!! | |
# From here on, we run new code which does not have access to the password, only the headers | |
# !!!!!!!!!!!!!!!!!!!! | |
- name: Checkout new code | |
uses: actions/checkout@v4 | |
with: | |
ref: "${{ github.event.pull_request.merge_commit_sha }}" | |
clean: false | |
- name: Test with pytest | |
run: pytest smoke_test/test_2_methods.py -v -x | |
env: | |
EMAIL: ${{ vars.EMAIL }} | |
PASSWORD: <redacted> | |
LIST: ${{ vars.LIST }} | |