Skip to content

Commit c0f582d

Browse files
author
tyler
committed
added install script and install command for testing
1 parent 100208c commit c0f582d

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/testing.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install --upgrade pip
26+
pip install .
2627
- name: Test
2728
run: |
2829
python -m unittest discover

scripts/install.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -o nounset
4+
set -o errexit
5+
set -o xtrace
6+
7+
pip3 install .. --upgrade --no-cache

0 commit comments

Comments
 (0)