-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bda7dbb
commit c9bdea7
Showing
2 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: [master, main] | ||
# only when python files are changed | ||
paths: | ||
- '**.py' | ||
pull_request: | ||
branches: [master, main] | ||
|
||
workflow_dispatch: | ||
|
||
# set the run-name | ||
run-name: ${{ github.ref_name }} -> Test ( | ||
${{ github.run_attempt }} | ||
) | ||
|
||
|
||
jobs: | ||
lint: | ||
|
||
name: Tests | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get current date and time | ||
id: datetime | ||
run: | | ||
datetime=$(date +'%Y-%m-%dT%H-%M-%SZ') | ||
echo "datetime=$datetime" >> $GITHUB_OUTPUT | ||
- name: Display date/time in output (forensics when triaging issues) | ||
run: echo ${{ steps.datetime.outputs.datetime }} | ||
|
||
- name: Checkout Code | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install . | ||
pip install pytest | ||
- name: Run tests | ||
run: | | ||
pytest --log-level DEBUG --tenant_id ${{ vars.TEST_TENANT_ID}} --client_id ${{ vars.TEST_CLIENT_ID }} --client_secret ${{ secrets.TEST_CLIENT_SECRET }} tests |
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