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 130d4de commit 2c7d515Copy full SHA for 2c7d515
.github/workflows/pythonpublish.yml
@@ -17,6 +17,11 @@ jobs:
17
run: |
18
python -m pip install --upgrade pip
19
pip install setuptools wheel twine
20
+ - name: Make sure unit tests succeed
21
+ run: |
22
+ pip install -r test/test_requirements.txt
23
+ pip install -e .
24
+ pytest
25
- name: Build and publish
26
env:
27
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
test/test_util.py
@@ -23,8 +23,6 @@ def test_empty_file(tmp_path):
def test_retrieve_authors(tmp_path):
- tmp_path = "/Users/ue86yw/workspace/testrepo"
-
28
# Create file
29
file_name = os.path.join(tmp_path, 'new-file')
30
with open(file_name, 'w') as the_file:
0 commit comments