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 8651bfd commit 37b3513Copy full SHA for 37b3513
.github/workflows/python-package.yml
@@ -27,13 +27,15 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip wheel
29
python -m pip install -r requirements-dev.txt
30
+ - name: Temporary installation
31
+ run: python -m pip install -e .
32
+ - name: Test with pytest
33
+ run: |
34
+ pytest
35
- name: Build package
36
37
python setup.py sdist bdist_wheel
38
- name: Install package
39
run: python -m pip install --find-links=dist --no-index --ignore-installed docstring_to_markdown
40
- name: Pip check
41
run: python -m pip check
- - name: Test with pytest
- run: |
- pytest
0 commit comments