Skip to content

Reduce log spam

Reduce log spam #405

Workflow file for this run

name: CI
on: push
env:
PRIMARY_PYTHON_VERSION: '3.12'
jobs:
cloc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Count Lines of Code (cloc) for the PTtools library
uses: djdefi/cloc-action@6
with:
options: ${{ github.workspace }}/pttools --exclude-list-file=.clocignore
- name: Count Lines of Code (cloc) for the repository
uses: djdefi/cloc-action@6
with:
options: ${{ github.workspace }} --exclude-list-file=.clocignore
graph:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
- name: Print Python version
run: python -V
- name: Install graphviz
run: |
sudo apt-get update
sudo apt-get install -y graphviz
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Run Pyreverse
run: |
mkdir uml
pyreverse pttools -o png -d ./uml
pyreverse pttools -o svg -d ./uml
- name: Run Pyan
continue-on-error: true
run: |
./gen_call_graphs.sh "all" "./**/*.py"
./gen_call_graphs.sh "bubble" "./pttools/bubble/**.py"
./gen_call_graphs.sh "pttools" "./pttools/**.py"
./gen_call_graphs.sh "pttools_tests" "./pttools/**.py" "./pttools/**/*.py" "./tests/**.py"
./gen_call_graphs.sh "ssmtools" "./pttools/ssmtools/**.py"
./gen_call_graphs.sh "tests" "./tests/**/*.py"
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Graph
path: |
call_graphs
uml
if-no-files-found: error
lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
- name: Print Python version
run: python -V
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Run Pylint
run: pylint pttools tests 2>&1 | tee pylint.txt
- name: Upload results
uses: actions/upload-artifact@v4
with:
name: Lint
path: |
${{ github.workspace }}/pylint.txt
if-no-files-found: error
# fossa:
# runs-on: ubuntu-latest
# timeout-minutes: 5
# steps:
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ env.PRIMARY_PYTHON_VERSION }}
# - name: Print Python version
# run: python -V
# - name: Checkout
# uses: actions/checkout@v4
# - name: Load pip cache
# uses: actions/cache@v4
# with:
# path: .pip
# key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
# restore-keys: |
# pip-${{ runner.os }}-
# pip-
# - name: Install requirements
# run: |
# pip --cache-dir=.pip install --upgrade pip
# pip --cache-dir=.pip install --upgrade wheel
# pip --cache-dir=.pip install -r requirements.txt
# - name: Install FOSSA
# run: |
# curl -H 'Cache-Control: no-cache' https://raw.githubusercontent.com/fossas/fossa-cli/master/install.sh | sudo bash
# - name: Run FOSSA
# run: fossa analyze
# env:
# FOSSA_API_KEY: ${{ secrets.FOSSA_API_KEY }}
test-numba:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Print Python version
run: python -V
- name: Install ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Print Numba sysinfo
run: numba --sysinfo | tee numba-sysinfo.txt
- name: Generate reference data
run: python3 pttools/bubble/fluid_reference.py
env:
PYTHONPATH: .
- name: Run tests
run: |
set -o pipefail
pytest | tee test-output.txt
coverage json
- name: Upload results
uses: actions/upload-artifact@v4
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
name: Test results with Numba
path: |
coverage.xml
coverage.json
htmlcov
numba-sysinfo.txt
test-output.txt
test-results
if-no-files-found: error
# test-numba-old:
# runs-on: ubuntu-latest
# timeout-minutes: 10
# strategy:
# matrix:
# python-version: ['3.7']
# env:
# PRIMARY_OLD_PYTHON_VERSION: '3.7'
# steps:
# - name: Setup Python
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
# - name: Print Python version
# run: python -V
# - name: Checkout
# uses: actions/checkout@v4
# - name: Load pip cache
# uses: actions/cache@v4
# with:
# path: .pip
# key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
# restore-keys: |
# pip-${{ runner.os }}-
# pip-
# - name: Install requirements
# run: |
# pip --cache-dir=.pip install --upgrade pip
# pip --cache-dir=.pip install --upgrade wheel
# pip --cache-dir=.pip install -r requirements-old.txt -r requirements-dev.txt
# - name: Print Numba sysinfo
# run: numba --sysinfo | tee numba-sysinfo.txt
# - name: Run tests
# run: |
# set -o pipefail
# pytest | tee test-output.txt
# coverage json
# - name: Upload results
# uses: actions/upload-artifact@v4
# if: ${{ matrix.python-version == env.PRIMARY_OLD_PYTHON_VERSION }}
# with:
# name: Test results with old Numba
# path: |
# coverage.xml
# coverage.json
# htmlcov
# numba-sysinfo.txt
# test-output.txt
# test-results
# if-no-files-found: error
test-python:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Print Python version
run: python -V
- name: Checkout
uses: actions/checkout@v4
- name: Load pip cache
uses: actions/cache@v4
with:
path: .pip
key: pip-${{ runner.os }}-${{ hashFiles('requirements.txt') }}
restore-keys: |
pip-${{ runner.os }}-
pip-
- name: Install requirements
run: |
pip --cache-dir=.pip install --upgrade pip
pip --cache-dir=.pip install --upgrade wheel
pip --cache-dir=.pip install -r requirements.txt -r requirements-dev.txt
- name: Print Numba sysinfo
run: numba --sysinfo | tee numba-sysinfo.txt
- name: Generate reference data
run: python3 pttools/bubble/fluid_reference.py
env:
PYTHONPATH: .
- name: Run tests with coverage
# Without pytest-pythonpath the PYTHONPATH may have to be set manually
# PYTHONPATH="${PYTHONPATH}${PYTHONPATH:+:}./tests" pytest | tee test-output.txt
# Coverage of Numba-compiled functions does not get reported
run: |
set -o pipefail
NUMBA_DISABLE_JIT=1 pytest | tee test-output.txt
coverage json
- name: Upload results
uses: actions/upload-artifact@v4
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
name: Test results without Numba
path: |
coverage.xml
coverage.json
htmlcov
numba-sysinfo.txt
test-output.txt
test-results
if-no-files-found: error
- name: Upload results to Codecov
uses: codecov/codecov-action@v1
if: ${{ matrix.python-version == env.PRIMARY_PYTHON_VERSION }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ${{ github.workspace }}/coverage.xml