Skip to content
Snippets Groups Projects
Commit 9284a9c3 authored by Felipe Delestro Matos's avatar Felipe Delestro Matos
Browse files

pylint fixes

parent 40553c71
No related branches found
No related tags found
No related merge requests found
Pipeline #17519 passed
......@@ -10,6 +10,6 @@ run_tests:
script:
- echo "Running unit pytest..."
- find -name "*.py" -type f -print0 | xargs -0 pylint --fail-under=8.0
- find -name "*.py" -type f -print0 | xargs -0 pylint --fail-under=5.0
- python3 -m pytest -v
- echo "Done!"
\ No newline at end of file
import qimex
""" Tests for the module """
import pytest
import qimex
def test_say_hello():
""" Checks default behaviour """
user = "Alice"
expected_output = "Hello Alice!"
result = qimex.examples.say_hello(user)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment