Typo in test #3
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: integration-test | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
test: | |
strategy: | |
matrix: | |
pyver: ['3.10'] | |
os: ['ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.pyver }} | |
- name: Install dependencies | |
shell: bash | |
run: | | |
python -m pip install --upgrade pip | |
pip install git+https://github.com/dgbowl/dgpost.git@${{ github.ref }} yadg pytest | |
- name: Clone integration-tests | |
shell: bash | |
run: | | |
git clone https://github.com/dgbowl/integration-tests.git | |
cd integration-tests | |
- name: Run pytest | |
shell: bash | |
run: | | |
pytest -vvx |