Skip to content

Commit

Permalink
Hopefully this passes now
Browse files Browse the repository at this point in the history
  • Loading branch information
gregv committed Jul 2, 2024
1 parent a1964bc commit c23ca9d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions api/certificates/tests/test_always_pass.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# tests/test_always_pass.py

import pytest
# Import env
import os
from dotenv import load_dotenv
load_dotenv()

def pytest_configure():
pytest.CERTIFICATE_TEST_REPO_URL: str = "https://github.com/whemminger/backend-ohack.dev.git"
pytest.CERTIFICATE_TEST_USERNAME: str = "Squibb"
pytest.CERTIFICATE_SAVE_DIR: str = "/tmp/"

def test_always_pass():
assert True

0 comments on commit c23ca9d

Please sign in to comment.