diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5557179..2acaa62 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: test: runs-on: ubuntu-latest env: - MONGO_URI: justtotes + MONGO_URI: ${{ secrets.MONGO_URI }} NOVA_KEY: ${{ secrets.NOVA_KEY }} steps: diff --git a/tests/__main__.py b/tests/__main__.py index 6ae25f1..7bc0243 100644 --- a/tests/__main__.py +++ b/tests/__main__.py @@ -114,10 +114,6 @@ def test_all(): if __name__ == '__main__': closedai.api_base = api_endpoint closedai.api_key = os.environ['NOVA_KEY'] - if os.environ['NOVA_KEY']: - print('key exists!') - else: - print('idk man i dont see nuthin') HEADERS = { 'Content-Type': 'application/json',