Skip to content

Commit

Permalink
debug msg
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreLobato committed Jan 14, 2025
1 parent ed31614 commit 05ae07a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
from unittest.mock import patch, MagicMock
from oceanum.cli.common.models import TokenResponse
import pytest

import oceanum.cli.prax
tmpdir = tempfile.TemporaryDirectory()
dir_patcher = patch('platformdirs.user_data_dir', return_value=tmpdir.name)
active_org_patcher = patch.object(TokenResponse, 'active_org', return_value='test-org')
email_patcher = patch.object(TokenResponse, 'email', return_value='test@test.com')


print('Tests are starting... Hello from conftest.py!')
def pytest_sessionstart(session):
dir_patcher.start()
TokenResponse(
Expand Down

0 comments on commit 05ae07a

Please sign in to comment.