Skip to content

Commit

Permalink
Removing all profiling tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wathen committed Nov 6, 2023
1 parent d173794 commit a3532fd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion github-actions/gotm-fabm-ersem/test_profiling.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def test_ersem_func_names(self):
name = self.ersem["name"].tolist()
name_expected = self.ersem_expected["name"].tolist()
self.assertListEqual(sorted(name_expected), sorted(name))

@pytest.mark.skip()
def test_gotm_func_names(self):
"""
Expand Down Expand Up @@ -154,6 +154,7 @@ def test_netcdf_func_names(self):
name_expected = self.netcdf_expected["name"].tolist()
self.assertListEqual(sorted(name_expected), sorted(name))

@pytest.mark.skip()
def test_ersem_func_calls(self):
"""
Check the number of func calls for ERSEM modules stays the same
Expand All @@ -169,6 +170,7 @@ def test_ersem_func_calls(self):
self.ersem["name"], self.ersem['self calls'])}
assert calls == calls_expected

@pytest.mark.skip()
def test_gotm_func_calls(self):
"""
Check the number of func calls for GOTM modules stays the same
Expand All @@ -182,6 +184,7 @@ def test_gotm_func_calls(self):
{n: c for n, c in zip(self.gotm["name"], self.gotm['self calls'])}
assert calls == calls_expected

@pytest.mark.skip()
def test_fabm_func_calls(self):
"""
Check the number of func calls for FABM modules stays the same
Expand All @@ -195,6 +198,7 @@ def test_fabm_func_calls(self):
{n: c for n, c in zip(self.fabm["name"], self.fabm['self calls'])}
assert calls == calls_expected

@pytest.mark.skip()
def test_netcdf_func_calls(self):
"""
Check the number of func calls for NETCDF modules stays the same
Expand Down

0 comments on commit a3532fd

Please sign in to comment.