-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
📝 Doc config and 🔧 mapping #230
Conversation
Codecov Report
@@ Coverage Diff @@
## main #230 +/- ##
==========================================
- Coverage 98.03% 96.29% -1.75%
==========================================
Files 2 2
Lines 51 54 +3
==========================================
+ Hits 50 52 +2
- Misses 1 2 +1
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some food for thought. View full project report here.
@pytest.mark.asyncio | ||
async def test_settings(): | ||
"""Search Testing""" | ||
assert settings.VALUE == "On Testing" |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
async def test_settings(): | ||
"""Search Testing""" | ||
assert settings.VALUE == "On Testing" | ||
assert settings.findmyorder_enabled == True |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
print(result) | ||
assert settings.instrument_mapping | ||
assert settings.instrument_mapping == True |
Check notice
Code scanning / Bandit
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
No description provided.