Skip to content

Commit

Permalink
split test workflows for dev branch and prs; add step to compare pr t…
Browse files Browse the repository at this point in the history
…ests with latest from dev
  • Loading branch information
maxeeem committed Jan 23, 2024
1 parent 0632551 commit 07bdd5a
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application
name: Python application - DEV

on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]

permissions:
contents: read
Expand All @@ -19,21 +17,23 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7.x
uses: actions/setup-python@v3
with:
python-version: "3.7"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
#flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
#flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with unittest
run: |
python -m unittest discover Tests/test_NAL/ -p "test_*.py" -v
python -m unittest discover Tests/test_NAL/ -p "test_*.py" -v &> output-dev.txt
- uses: actions/upload-artifact@v4
with:
name: test-report
path: ./output-dev.txt
57 changes: 57 additions & 0 deletions .github/workflows/python-app-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python

name: Python application - PR

on:
pull_request:
branches: [ "dev" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up Python 3.7.x
uses: actions/setup-python@v3
with:
python-version: "3.7"

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with unittest
run: |
python -m unittest discover Tests/test_NAL/ -p "test_*.py" -v &> output-pr.txt
- name: Download workflow artifact
uses: dawidd6/[email protected]
with:
workflow: python-app-dev.yml
name: test-report

- name: Setup Node (for diff)
uses: actions/setup-node@v4
with:
node-version: 18
- run: npm install -g diff2html-cli

- name: Compare test results
run: |
diff -u ./test-report/output-dev.txt output-pr.txt | diff2html -i stdin -F test-diff.html
- uses: actions/upload-artifact@v4
with:
name: test-diff
path: ./test-diff.html


0 comments on commit 07bdd5a

Please sign in to comment.