Skip to content

Commit 468b2e6

Browse files
committed
Add keyword argument to get tests running
1 parent 5670911 commit 468b2e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def new_email_generator():
6969
# pytest Fixtures
7070

7171

72-
@pytest.fixture("session")
72+
@pytest.fixture(scope="session")
7373
def temp_directory():
7474
directory_abs_path = tempfile.mkdtemp()
7575

@@ -78,7 +78,7 @@ def temp_directory():
7878
os.rmdir(directory_abs_path)
7979

8080

81-
@pytest.fixture("session")
81+
@pytest.fixture(scope="session")
8282
def local_file(temp_directory):
8383
file = download_file(WEBEX_TEAMS_TEST_FILE_URL, temp_directory)
8484

0 commit comments

Comments
 (0)