Skip to content

Commit dd17dc2

Browse files
committed
ruff formatted
1 parent 84e8cff commit dd17dc2

5 files changed

Lines changed: 2 additions & 185 deletions

File tree

rtanalysis/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

rtanalysis/generate_testdata.py

Lines changed: 0 additions & 64 deletions
This file was deleted.

rtanalysis/rtanalysis.py

Lines changed: 0 additions & 118 deletions
This file was deleted.

tests/test_3_type_fail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
# This xfail decorator tells pytest to run the test
1111
# but don't count it as a failure when it fails
1212
# (since we know it's going to fail)
13-
@pytest.mark.xfail
13+
# @pytest.mark.xfail
1414
def test_dataframe_error():
1515
rta = RTAnalysis()
1616
test_df = generate_test_df(2, 1, 0.8)

tests/test_3_type_success.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def test_dataframe_error_with_raises():
1111
rta = RTAnalysis()
1212
test_df = generate_test_df(2, 1, 0.8)
1313
with pytest.raises(ValueError):
14-
rta.fit(test_df.rt, test_df.accuracy.loc[1:])
14+
rta.fit(test_df.rt, test_df.accuracy)

0 commit comments

Comments
 (0)