Skip to content
Snippets Groups Projects
Commit 483d1bea authored by Bryce Guinta's avatar Bryce Guinta Committed by Claudiu Popa
Browse files

Remove try except for pytest import since pytest is now the default test runner

parent 58c8db1e
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -41,11 +41,8 @@ try:
except ImportError:
HAS_DATEUTIL = False
 
try:
import pytest
HAS_PYTEST = True
except ImportError:
HAS_PYTEST = False
import pytest
HAS_PYTEST = True
 
try:
import attr as attr_module # pylint: disable=unused-import
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment