From 261c91deb3167bd30ede49ded650b7e659c16111 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 13 Sep 2024 09:58:58 -0400 Subject: Update integration test to utilize the multiprocessing pool --- tests/data/generic.ini | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'tests/data') diff --git a/tests/data/generic.ini b/tests/data/generic.ini index c1e5c9c..08d5754 100644 --- a/tests/data/generic.ini +++ b/tests/data/generic.ini @@ -17,6 +17,7 @@ installer_baseurl = https://github.com/conda-forge/miniforge/releases/download/{ ;conda_packages = pip_packages = firewatch==0.0.4 + tweakreg==0.8.8 [runtime] @@ -25,8 +26,21 @@ PYTHONUNBUFFERED = 1 [test:firewatch] repository = https://github.com/astroconda/firewatch -script = +script_setup = pip install -e '.' +script = + firewatch -c conda-forge | grep -E ' python-[0-9]' + + +[test:tweakwcs] +repository = https://github.com/spacetelescope/tweakwcs +script_setup = + pip install -e '.[test]' +script = + pytest \ + -r fEsx \ + --basetemp="{{ func:basetemp_dir() }}" \ + --junitxml="{{ func:junitxml_file() }}" [deploy:artifactory:delivery] -- cgit From 4d68bd4e120f6b7633bfb9ef979338b8f3d9e9fa Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 13 Sep 2024 10:12:11 -0400 Subject: Correct package name --- tests/data/generic.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/data') diff --git a/tests/data/generic.ini b/tests/data/generic.ini index 08d5754..0a8c9ef 100644 --- a/tests/data/generic.ini +++ b/tests/data/generic.ini @@ -17,7 +17,7 @@ installer_baseurl = https://github.com/conda-forge/miniforge/releases/download/{ ;conda_packages = pip_packages = firewatch==0.0.4 - tweakreg==0.8.8 + tweakwcs==0.8.8 [runtime] -- cgit From da8196e280c9c1306fd50c77427c912182f9c274 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 13 Sep 2024 14:30:39 -0400 Subject: Workaround for a bug in firewatch --- tests/data/generic.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/data') diff --git a/tests/data/generic.ini b/tests/data/generic.ini index 0a8c9ef..7d77edd 100644 --- a/tests/data/generic.ini +++ b/tests/data/generic.ini @@ -29,7 +29,7 @@ repository = https://github.com/astroconda/firewatch script_setup = pip install -e '.' script = - firewatch -c conda-forge | grep -E ' python-[0-9]' + firewatch -c conda-forge -p ${STASIS_CONDA_PLATFORM_SUBDIR} | grep -E ' python-[0-9]' [test:tweakwcs] -- cgit