Skip to content

Commit

Permalink
edit pytest skips
Browse files Browse the repository at this point in the history
  • Loading branch information
ericfell committed Oct 31, 2023
1 parent 79a1d8b commit 0db84f7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class TestCyclingProtocolResults:
def test_results_init(self):
raise NotImplementedError

@pytest.mark.skip(reason="not implemented yet")
def test_state_of_charge(self):
r_cls = 0.2
o_cls = 0.8
Expand All @@ -34,6 +35,7 @@ class TestCyclingProtocol:
def test_abstract_class_init(self):
raise NotImplementedError

@pytest.mark.skip(reason="not implemented yet")
def test_abstract_class_run(self):
test_model = ZeroDModel(cls_volume=6, ncls_volume=0.01, cls_start_c_ox=0.01, cls_start_c_red=0.01,
ncls_start_c_ox=0.01, ncls_start_c_red=0.01, init_ocv=1.0, resistance=1, k_0_cls=1e-3,
Expand All @@ -46,6 +48,7 @@ def test_abstract_class_run(self):
def test_validate_model(self):
raise NotImplementedError

@pytest.mark.skip(reason="not implemented yet")
def test_current_direction(self):
x = CyclingProtocol(current=1, charge_first=True)
y = CyclingProtocol(current=1, charge_first=False)
Expand Down

0 comments on commit 0db84f7

Please sign in to comment.