Skip to content

Commit 0b845a9

Browse files
authored
Merge pull request #28 from TuftsBCB/dev_fix_packaging
Fix Python Module Packaging Issues
2 parents 5c98212 + 74b246c commit 0b845a9

31 files changed

+338
-694
lines changed

.github/workflows/test.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Build & Test
2+
3+
on:
4+
push:
5+
branches: ["dev"]
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v4
17+
- name: Set up Python 3.12
18+
uses: actions/setup-python@v3
19+
with:
20+
python-version: "3.12"
21+
22+
- name : Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install .[dev]
26+
pip install pytest-github-report
27+
28+
- name : Run Tests
29+
env:
30+
pytest_github_report: true
31+
run: |
32+
pytest

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.12

DEPRECIATED_tests/test_detail.py

Lines changed: 0 additions & 184 deletions
This file was deleted.

DEPRECIATED_tests/test_detailparser.py

Lines changed: 0 additions & 80 deletions
This file was deleted.

0 commit comments

Comments
 (0)