Skip to content

Commit

Permalink
Do not use pendulum
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Sep 11, 2024
1 parent 7a7715f commit 7a05fc1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 151 deletions.
142 changes: 1 addition & 141 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ extras = ["faker"]
[tool.poetry.group.dev.dependencies]
faker = ">=18.5.1"
mypy = ">=1.8.0"
pendulum = "~=3.0"
pre-commit = ">=3.0.4"
ruff = "~=0.6.1"
pydocstyle = ">=6.1.1"
Expand Down
5 changes: 2 additions & 3 deletions tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import decimal
import json

import pendulum
import pytest
import sqlalchemy as sa
from faker import Faker
Expand All @@ -28,12 +27,12 @@
)

SAMPLE_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"start_date": datetime.datetime(2022, 11, 1).isoformat(),
"sqlalchemy_url": DB_SQLALCHEMY_URL,
}

NO_SQLALCHEMY_CONFIG = {
"start_date": pendulum.datetime(2022, 11, 1).to_iso8601_string(),
"start_date": datetime.datetime(2022, 11, 1).isoformat(),
"host": "localhost",
"port": 5432,
"user": "postgres",
Expand Down
Loading

0 comments on commit 7a05fc1

Please sign in to comment.