Skip to content

Commit

Permalink
feat: implement testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Teqed committed Aug 4, 2023
1 parent bbd3a14 commit a7e902c
Show file tree
Hide file tree
Showing 4 changed files with 319 additions and 227 deletions.
7 changes: 5 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
"-p",
"test_*.py",
],
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"-v",
],
}
5 changes: 5 additions & 0 deletions pytest.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# pytest.ini
[pytest]
asyncio_mode=auto
testpaths = tests
python_files = *
Loading

0 comments on commit a7e902c

Please sign in to comment.