We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f4fe6c commit 8bb8d83Copy full SHA for 8bb8d83
1 file changed
.github/workflows/python-app.yml
@@ -31,10 +31,13 @@ jobs:
31
- name: Display Python version
32
run: python -c "import sys; print(sys.version)"
33
# Install the package using the setup.py
34
+ - name: Clean temp directory
35
+ run: rm -rf *
36
+ working-directory: ./Test
37
- name: Install pytest
38
run: |
39
python -m pip install --upgrade pip
40
pip install piencrypt
41
# Run the tests. I'm using pytest and the file is in the tests directory.
42
- name: Run tests
- run: python Test/pie_test.py
43
+ run: python pie_test.py
0 commit comments