Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/perwin/pyimfit
Browse files Browse the repository at this point in the history
  • Loading branch information
perwin committed Sep 17, 2024
2 parents 5625b15 + cd74e0b commit e1e8ce8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions conda/test_conda_installs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,24 @@ cd $WORKING_DIR
# Python 3.10
conda activate py310_test
conda install --yes -c conda-forge perwin::pyimfit
./test_pyimfit_install.py
echo "Running Python 3.10 test (output saved to test_output.txt)..."
./test_pyimfit_install.py > test_output.txt
conda uninstall --yes pyimfit
conda deactivate

# Python 3.11
conda activate py311_test
conda install --yes -c conda-forge perwin::pyimfit
./test_pyimfit_install.py
echo "Running Python 3.11 test (output saved to test_output.txt)..."
./test_pyimfit_install.py >> test_output.txt
conda uninstall --yes pyimfit
conda deactivate

# Python 3.12
conda activate py312_test
conda install --yes -c conda-forge perwin::pyimfit
./test_pyimfit_install.py
echo "Running Python 3.12 test (output saved to test_output.txt)..."
./test_pyimfit_install.py >> test_output.txt
conda uninstall --yes pyimfit
conda deactivate

Expand Down

0 comments on commit e1e8ce8

Please sign in to comment.