Skip to content

Commit

Permalink
Remove trailing whitespaces
Browse files Browse the repository at this point in the history
Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
  • Loading branch information
stv0g committed Jun 17, 2024
1 parent d3784b6 commit 360746e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Pytest
on: push
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3 # checkout the repository content to github runner.
Expand All @@ -12,27 +12,27 @@ jobs:
python-version: 3.8
- name: Install graphviz
run: sudo apt install graphviz
shell: bash
shell: bash
- name: Install dependencies
run: |
sudo pip3 install --upgrade pip
sudo pip3 install sphinx_rtd_theme
sudo pip3 install sphinx
sudo pip3 install pytest
sudo pip3 install pytest-check
sudo pip3 install pytest-check
- name: Execute py script
env:
working-directory: ${{runner.workspace}}/cimpy
run: |
sudo python3 setup.py install
run: |
sudo python3 setup.py install
- name: Pytest
env:
working-directory: ${{runner.workspace}}/cimpy
run: |
sudo pytest -v -cov --junitxml=report.xml
sudo pytest -v -cov --junitxml=report.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v3
with:
name: pytest-results
path: ${{runner.workspace}}/cimpy/report.xml
path: ${{runner.workspace}}/cimpy/report.xml
if: ${{ always() }}

0 comments on commit 360746e

Please sign in to comment.