Turn on core Python tests

This commit is contained in:
Michael Droettboom 2018-07-23 12:37:37 -04:00
parent 1aa2fc1265
commit 9d74363275
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
import os
import pathlib
import time
@ -287,7 +286,7 @@ def test_run_core_python_test(python_test, selenium):
def pytest_generate_tests(metafunc):
if 'python_test' in metafunc.fixturenames:
test_modules = []
if 'CIRCLECI' not in os.environ and False:
if True:
with open(
str(pathlib.Path(__file__).parents[0] /
"python_tests.txt")) as fp: