We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 100208c commit c0f582dCopy full SHA for c0f582d
.github/workflows/testing.yml
@@ -23,6 +23,7 @@ jobs:
23
- name: Install dependencies
24
run: |
25
python -m pip install --upgrade pip
26
+ pip install .
27
- name: Test
28
29
python -m unittest discover
scripts/install.sh
@@ -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