Skip to content

Commit

Permalink
Make pytest pass
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentS committed Mar 16, 2022
1 parent e5d35db commit 5f81e9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tap_gitlab/tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
"""Tests standard tap features using the built-in SDK tests library."""

import datetime
import os

from singer_sdk.testing import get_standard_tap_tests

from tap_gitlab.tap import TapGitLab

SAMPLE_CONFIG = {
"start_date": datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%d")
# TODO: Initialize minimal tap config
"start_date": datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%d"),
"private_token": os.getenv("GITLAB_PRIVATE_TOKEN"),
"projects": os.getenv("GITLAB_PROJECTS_TO_FETCH", ""),
}


Expand Down

0 comments on commit 5f81e9d

Please sign in to comment.