Skip to content

Commit

Permalink
test(deploy-test): fix url;
Browse files Browse the repository at this point in the history
  • Loading branch information
montanizstills committed Sep 18, 2023
1 parent a8d9247 commit cea2902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def headers():

@pytest.fixture(scope='session')
def url():
return os.environ.get("JIRA_URL") if os.environ.get(
return f'{os.environ.get("JIRA_URL")}/rest/api/2/issue/' if os.environ.get(
"JIRA_URL") else f"{json.load(open('../../resources/jira-credentials.json'))['jira_url']}/rest/api/2/issue/"


Expand Down

0 comments on commit cea2902

Please sign in to comment.