don't drop the original message on parsing stats #33
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
# .github/workflows/unittest.yml: configuration file for github actions worflow | |
# This file was automatically generated using 'python -m vsc.install.ci' | |
# DO NOT EDIT MANUALLY | |
jobs: | |
python_unittests: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: install tox | |
run: pip install 'virtualenv<20.22.0' 'tox<4.5.0' | |
- name: add mandatory git remote | |
run: git remote add hpcugent https://github.com/hpcugent/vsc-utils.git | |
- name: Run tox | |
run: tox -e py$(echo ${{ matrix.python }} | sed 's/\.//g') | |
strategy: | |
matrix: | |
python: | |
- 3.6 | |
- 3.9 | |
name: run python tests | |
'on': | |
- push | |
- pull_request |