Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[py-icon4py] re-enable testing in v0.21.1 #938

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions test/system_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -611,14 +611,16 @@ def test_install_default(self):
@pytest.mark.no_tsa # py-isort install fails with: No module named 'poetry'.
class PyIcon4pyTest(unittest.TestCase):

@pytest.mark.no_daint # problem with gt4py and spack v21.1
def test_install_version_0_0_3_1(self):
spack_install('py-icon4py @ 0.0.3.1 %gcc ^[email protected]')
spack_install_and_test('py-icon4py @ 0.0.3.1 %gcc ^[email protected]')

@pytest.mark.no_daint # problem with gt4py and spack v21.1
def test_install_version_0_0_9(self):
spack_install('py-icon4py @ 0.0.9 %gcc ^[email protected]')
spack_install_and_test('py-icon4py @ 0.0.9 %gcc ^[email protected]')

def test_install_version_0_0_10(self):
spack_install('py-icon4py @ 0.0.10 %gcc ^[email protected]')
spack_install_and_test('py-icon4py @ 0.0.10 %gcc ^[email protected]')


class PyInflectionTest(unittest.TestCase):
Expand Down
Loading