We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5ece74d + cbc6c0a commit 0c05f00Copy full SHA for 0c05f00
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: Install pytest
+ - name: Install piencrypt
35
run: |
36
python -m pip install --upgrade pip
37
pip install piencrypt
38
# Run the tests. I'm using pytest and the file is in the tests directory.
39
+ - name: Clean temp directory
40
+ run: rm -rf *
41
+ working-directory: ./Test
42
- name: Run tests
43
run: python Test/pie_test.py
0 commit comments