Skip to content

Commit 1f7019b

Browse files
authored
Merge pull request #11 from edge-ml/predictor
Predictor
2 parents 2b3e681 + 0de7680 commit 1f7019b

20 files changed

Lines changed: 5310 additions & 23 deletions

.github/workflows/PyPIPublish.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,15 @@ jobs:
2525
uses: actions/setup-python@v1
2626
with:
2727
python-version: 3.9
28+
- name: Install dependencies
29+
run: |
30+
pip install -r requirements.txt
2831
- name: Run tests
2932
run: >-
3033
python -m
3134
unittest
3235
-v
33-
tests/all.py
36+
tests/test_predictor.py
3437
- name: Install pypa/build
3538
run: >-
3639
python -m

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,12 @@ jobs:
2323
uses: actions/setup-python@v1
2424
with:
2525
python-version: 3.9
26+
- name: Install dependencies
27+
run: |
28+
pip install -r requirements.txt
2629
- name: Run tests
2730
run: >-
2831
python -m
2932
unittest
3033
-v
31-
tests/all.py
34+
tests/test_predictor.py

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.vscode
2+
13
# Byte-compiled / optimized / DLL files
24
__pycache__/
35
*.py[cod]

examples/legacy-example/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)