Skip to content

Commit

Permalink
Renamed baseline files for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Crivella committed Oct 6, 2023
1 parent 4448544 commit 44d1b81
Show file tree
Hide file tree
Showing 18 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tests/calc_system/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@pytest.fixture(
scope='module',
params=l,
ids=['LATT:' + str(a) for a in l]
ids=['LATT_' + str(a) for a in l]
)
def base(request):
return basis[request.param]
Expand All @@ -26,7 +26,7 @@ def base(request):
@pytest.fixture(
scope='module',
params=l,
ids=['#ATM:' + str(a) for a in l]
ids=['#ATM_' + str(a) for a in l]
)
def coord(request):
return coords[:request.param]
Expand Down
2 changes: 1 addition & 1 deletion tests/calc_system/t_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def cls_wcc(self, cls_rec, coord):
return cls_rec

@pytest.mark.mpl_image_compare
@pytest.mark.parametrize('rep', [1,2,3], ids=['rep:' + str(a) for a in [1,2,3]])
@pytest.mark.parametrize('rep', [1,2,3], ids=['rep_' + str(a) for a in [1,2,3]])
def test_plot_cell(self, cls_wcc, rep):
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
Expand Down

0 comments on commit 44d1b81

Please sign in to comment.