Skip to content

Commit 65df2d5

Browse files
authored
Merge branch 'main' into parser_dev
2 parents 129c729 + 252c00a commit 65df2d5

18 files changed

Lines changed: 901 additions & 678 deletions

.github/workflows/test.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# this workflow will run pytest automatically whenever a push to main branch or pull request to main branch is acted.
2+
3+
name: Run Tests
4+
5+
on:
6+
push:
7+
branches: [ main, master ]
8+
pull_request:
9+
branches: [ main, master ]
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
18+
- name: Set up Python
19+
uses: actions/setup-python@v4
20+
with:
21+
python-version: '3.x'
22+
23+
- name: Install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install pytest
27+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28+
29+
- name: Run tests
30+
run: pytest

__pycache__/gui.cpython-313.pyc

10.6 KB
Binary file not shown.
5.93 KB
Binary file not shown.
1.06 KB
Binary file not shown.

0 commit comments

Comments
 (0)