Updated version for fusionauth-python-client to 1.53.0 #144
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
# Run locally with act: | |
# | |
# act pull_request \ | |
# --platform fusionauth-standard=[ecr-repo-name]/fusionauth-standard:latest] \ | |
# --workflows ./.github/workflows/test.yaml | |
name: Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
runs-on: fusionauth-standard | |
env: | |
FUSIONAUTH_URL: http://localhost:9011 | |
FUSIONAUTH_API_KEY: bf69486b-4733-4470-a592-f1bfce7af580 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up FusionAuth | |
working-directory: src/test/docker | |
run: docker compose up -d | |
- name: Install fusionauth library | |
shell: bash -l {0} | |
run: pip3 install . | |
- name: Check to see if FusionAuth is loaded | |
run: | | |
bash ./src/test/docker/poll-for-kickstart-finish.sh | |
- name: Run tests | |
shell: bash -l {0} | |
run: | | |
python3 src/test/python/fusionauth/rest_client_test.py | |
python3 src/test/python/fusionauth/fusionauth_client_test.py |