Skip to content

Commit

Permalink
Test from the latest GP with a sprint race (São Paulo 2023)
Browse files Browse the repository at this point in the history
  • Loading branch information
ReubenFrankel committed Dec 6, 2023
1 parent 98a29ea commit 8e54b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_core.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"""Tests standard tap features using the built-in SDK tests library."""

import datetime
from datetime import date

from singer_sdk.testing import get_tap_test_class

from tap_f1.tap import TapF1

SAMPLE_CONFIG = {
"start_date": datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%d"),
# TODO: Initialize minimal tap config
# latest GP with a sprint race: https://www.formula1.com/en/racing/2023/Brazil.html
"start_date": date(2023, 11, 5).isoformat(),
}


Expand Down

0 comments on commit 8e54b1f

Please sign in to comment.