Skip to content

Commit

Permalink
Merge branch 'main' into server/database
Browse files Browse the repository at this point in the history
  • Loading branch information
LWJ-Nicholas authored Jan 15, 2024
2 parents 3321275 + b1ff584 commit 40bdd32
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ jobs:
Workflow name - `${{ github.workflow }}`
Job - `${{ github.job }}`
status - `${{ job.status }}`
assignees: lowkh
assignees: LWJ-Nicholas
approvers: HanisahMusrin
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ pytest-cov
Flask
Jinja2
passlib
flask-login
flask-sqlalchemy
flask_login
flask_sqlalchemy
13 changes: 13 additions & 0 deletions test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import pytest

# content of test_sysexit.py
import pytest


def f():
raise SystemExit(1)


def test_mytest():
with pytest.raises(SystemExit):
f()

0 comments on commit 40bdd32

Please sign in to comment.