Skip to content

Commit

Permalink
add env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmizerany committed Nov 30, 2023
1 parent 5a49fa6 commit 133d335
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""Tests standard tap features using the built-in SDK tests library."""

import os
import datetime

from singer_sdk.testing import get_tap_test_class
Expand All @@ -8,8 +9,8 @@

SAMPLE_CONFIG = {
"start_date": datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%d"),
"api_token": "xxx",
"account_token": "xxx"
"api_token": os.environ.get("TAP_FLEETIO_API_TOKEN"),
"account_token": os.environ.get("TAP_FLEETIO_ACCOUNT_TOKEN")
}


Expand Down

0 comments on commit 133d335

Please sign in to comment.