Skip to content

Commit

Permalink
Merge branch 'main' into test_everything_always
Browse files Browse the repository at this point in the history
  • Loading branch information
dominichofer authored Oct 2, 2024
2 parents 677fd3f + a97d919 commit eacc117
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 68 deletions.
18 changes: 0 additions & 18 deletions .github/workflows/auto_create_PR.yml

This file was deleted.

16 changes: 0 additions & 16 deletions create_new_sysconfig.sh

This file was deleted.

5 changes: 0 additions & 5 deletions repos/c2sm/packages/python/package.py

This file was deleted.

25 changes: 0 additions & 25 deletions status.sh

This file was deleted.

10 changes: 6 additions & 4 deletions test/system_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@ def test_install_int2lm_3_00_nvhpc():
spack_install('int2lm @int2lm-3.00 %nvhpc', test_root=False)


def test_install_libcdi_pio_default():
spack_install('libcdi-pio')
# This test fails because the link to scales-ppm's repo is dead.
# def test_install_libcdi_pio_default():
# spack_install('libcdi-pio')


def test_install_libgrib1_22_01_2020_nvhpc():
Expand Down Expand Up @@ -151,8 +152,9 @@ def test_install_py_typing_extensions_default():
spack_install('py-typing-extensions')


def test_install_scales_ppm_default():
spack_install('scales-ppm')
# This test fails because the link to its repo is dead.
# def test_install_default():
# spack_install('scales-ppm')


def test_install_yaxt_default():
Expand Down
7 changes: 7 additions & 0 deletions tools/package_overlap.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import os

spack = set(os.listdir("./spack/var/spack/repos/builtin/packages"))
spack_c2sm = set(os.listdir("./repos/c2sm/packages"))

for folder in sorted(spack & spack_c2sm):
print(folder)

0 comments on commit eacc117

Please sign in to comment.