7 lines
142 B
Python
7 lines
142 B
Python
|
import pytest
|
||
|
|
||
|
|
||
|
@pytest.fixture(scope='session')
|
||
|
def valid_credentials():
|
||
|
return (os.environ.get('USERNAME'), os.environ.get('PASSWORD'))
|