Skip to content

Commit 6d3a30a

Browse files
committed
Get tests to run
1 parent 39c7289 commit 6d3a30a

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,7 @@ jobs:
1616
uses: actions/setup-python@v1
1717
with:
1818
python-version: 3.7
19+
- name: Install dependencies
20+
run: ./install-deps.sh
1921
- name: Test with pytest
2022
run: ./run-tests.sh

install-deps.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
3+
set -x
4+
python3 -m pip install --upgrade pip
5+
python3 -m pip install -r requirements.txt

lcd/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .lcd_api import *

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
coverage~=5.0
2+
pytest~=6.0

0 commit comments

Comments
 (0)