Private
Public Access
1
0

fixing some tests, fixes for failing tests

This commit is contained in:
2024-04-16 13:17:36 +02:00
parent 0d819a5316
commit e6826d75c5
7 changed files with 24 additions and 19 deletions

View File

@@ -674,7 +674,7 @@ class InteractivePlotTests(TestCase):
def test_interactive_boxchart(self):
df = pl.read_csv('rowers/tests/testdata/boxplotdata.csv')
df = df.with_columns(pl.col("date").apply(lambda x:datetime.datetime.strptime(x, "%Y-%m-%d")))
df = df.with_columns(pl.col("date").dt.strftime("%Y-%m-%d"))
script, div = interactiveplots.interactive_boxchart(df, 'spm')