File tree Expand file tree Collapse file tree 3 files changed +28
-0
lines changed Expand file tree Collapse file tree 3 files changed +28
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ name : Run Unit Tests
2+
3+ on : [pull_request]
4+
5+ jobs :
6+ test :
7+ runs-on : ubuntu-latest
8+ strategy :
9+ matrix :
10+ python : ['3.10', '3.11', '3.12']
11+
12+ steps :
13+ - uses : actions/checkout@v3
14+
15+ - name : Set up Python
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : ${{ matrix.python }}
19+
20+ - name : Install Dependencies
21+ run : |
22+ pip install --upgrade pip
23+ pip install .[dev]
24+
25+ - name : Run Unit Tests
26+ run : make test
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ dependencies = [
6868dev = [
6969 " astroid==3.2.4" ,
7070 " autopep8==1.5.5" ,
71+ " coverage==7.6.1" ,
7172 " isort==5.13.2" ,
7273 " mccabe==0.6.1" ,
7374 " mypy==1.11.2" ,
@@ -77,6 +78,7 @@ dev = [
7778 " pyflakes==2.2.0" ,
7879 " pylint==3.2.7" ,
7980 " pytest==8.3.3" ,
81+ " pytest-cov==5.0.0" ,
8082 " ruff==0.6.5" ,
8183 " types-requests==2.32.0.20240914" ,
8284 " yapf==0.40.2" ,
You can’t perform that action at this time.
0 commit comments