Skip to content

Commit

Permalink
correct github action
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiaBarbo committed Aug 16, 2024
1 parent 7d1f4f3 commit dff812d
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/Quality_Assessment_&_Awarding_v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
- name: Run tests
run: |
python3 -m pytest -v
python3 -m pytest -v tests/test_auth.py tests/test_documents.py
- name: Step definition for validating the workflow
uses: eosc-synergy/sqaaas-step-action@v1
Expand Down
Binary file modified tests/__pycache__/test_auth.cpython-310-pytest-8.2.2.pyc
Binary file not shown.
Binary file modified tests/__pycache__/test_documents.cpython-310-pytest-8.2.2.pyc
Binary file not shown.
3 changes: 1 addition & 2 deletions tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

def test_auth_register():

"""
# correct new username and password
payload = {
"user": "userA",
Expand All @@ -27,7 +26,7 @@ def test_auth_register():
}
response = requests.post(PATH + '/register', json=payload)
assert response.status_code == 201
"""


# username and password already exist
payload = {
Expand Down

0 comments on commit dff812d

Please sign in to comment.