Skip to content

Commit 543f02b

Browse files
committed
Update pytest api key env var name
1 parent 67e3470 commit 543f02b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
import nucleus
1818

1919

20-
assert 'PYTEST_API_KEY' in os.environ, \
21-
"You must set the 'PYTEST_API_KEY' environment variable to a valid " \
20+
assert 'NUCLEUS_PYTEST_API_KEY' in os.environ, \
21+
"You must set the 'NUCLEUS_PYTEST_API_KEY' environment variable to a valid " \
2222
"Nucleus API key to run the test suite"
2323

24-
API_KEY = os.environ['PYTEST_API_KEY']
24+
API_KEY = os.environ['NUCLEUS_PYTEST_API_KEY']
2525

2626

2727
@pytest.fixture(scope='session')

0 commit comments

Comments
 (0)