Skip to content

Commit 503e5aa

Browse files
authored
Update build and pipfile (#38)
* update build and pipfile * install local for imports * hm maybe editable is what we really want (all of this feels wrong)
1 parent 6dc00ae commit 503e5aa

File tree

3 files changed

+111
-59
lines changed

3 files changed

+111
-59
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ jobs:
3232
- name: Install dependencies
3333
run: |
3434
python -m pip install --upgrade pip
35-
pip install flake8 pytest
3635
3736
- name: Lint
3837
run: |
38+
pip install flake8
3939
# stop the build if there are Python syntax errors or undefined names
4040
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
4141
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
4242
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4343
4444
- name: Test
4545
run: |
46+
pip install -e .
47+
pip install pytest
4648
pytest --doctest-modules --doctest-glob='*.rst'

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# next
22

3-
- Your PR goes here :)
3+
- PR #37 Replace nose with pytest (Thanks, @MeggyCal)
44

55
# 1.0.0
66

Pipfile.lock

Lines changed: 107 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)