Skip to content

Commit

Permalink
Merge pull request #89 from bowen-xu/test-run-compare
Browse files Browse the repository at this point in the history
Modify testing workflow to allow comparing between runs
  • Loading branch information
maxeeem authored Jan 24, 2024
2 parents 0632551 + e522fe1 commit 07c4d73
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 12 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 @@ -18,22 +16,25 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python 3.7.x
uses: actions/setup-python@v3
uses: actions/setup-python@v5
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
continue-on-error: true
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
58 changes: 58 additions & 0 deletions .github/workflows/python-app-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# 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@v4

- name: Set up Python 3.7.x
uses: actions/setup-python@v5
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
continue-on-error: true
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: 20
- 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 07c4d73

Please sign in to comment.