Skip to content

Commit

Permalink
sanity check where pytest looks
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr0id committed Jul 23, 2024
1 parent 546d14e commit 509ab02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,5 @@ jobs:
pip list | grep jito_jsonrpc_sdk
python -m pip list | grep jito_jsonrpc_sdk
pip show jito_jsonrpc_sdk
python check_pytest_imports.py
pytest ./tests/test_jito_json_rpc_sdk.py
6 changes: 6 additions & 0 deletions check_pytest_imports.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import jito_jsonrpc_sdk
import sys

def test_import():
print(jito_jsonrpc_sdk.__file__)
assert 'jito_jsonrpc_sdk' in sys.modules

0 comments on commit 509ab02

Please sign in to comment.