Skip to content

Commit 83607ae

Browse files
author
Sylvain MARIE
committed
Fixed test
1 parent 9f15f00 commit 83607ae

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pytest_cases/tests/cases/doc/test_joss.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from random import random
2-
from tabulate import tabulate
2+
# from tabulate import tabulate
33
from pytest_cases import parametrize, parametrize_with_cases
44

55

@@ -33,4 +33,5 @@ def test_evaluation(algo, data, results_bag):
3333
def test_synthesis(module_results_df):
3434
# we use this `module_results_df` fixture from `pytest-harvest`
3535
# to collect the final results table.
36-
print(tabulate(module_results_df, headers="keys"))
36+
# print(tabulate(module_results_df, headers="keys"))
37+
print(module_results_df)

0 commit comments

Comments
 (0)