Merge branch 'kangz12345/318/update-pylintrc' into kangz12345/314/rem… #748
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
name: Unit test | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
python -m pip install --upgrade pip | |
pip install coverage | |
pip install -r requirements.txt | |
sudo apt-get install python3-pyqt5 | |
- name: Run the unit tests and check coverage | |
run: | | |
xvfb-run `which coverage` run --source=iquip/ -m unittest discover -b | |
xvfb-run `which coverage` report |