Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/download_data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ jobs:

# Create a PR with the changes from the above script, if any.
- name: Create Pull Request
if: github.event_name != 'pull_request'
uses: peter-evans/create-pull-request@v8
with:
commit-message: "Update stored data"
Expand All @@ -52,7 +53,7 @@ jobs:

on-failure:
runs-on: ubuntu-latest
if: ${{ always() && (needs.download_data.result == 'failure' || needs.download_data.result == 'timed_out') && !(github.event_name == 'pull_request') }}
if: ${{ always() && (needs.download_data.result == 'failure' || needs.download_data.result == 'timed_out') && (github.event_name != 'pull_request') }}
needs:
- download_data
steps:
Expand Down
4 changes: 2 additions & 2 deletions bin/download_scopesim_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ popd
git clone https://github.com/AstarVienna/irdb.git
pushd irdb
# irdb doesn't use poetry yet
pip install -e ".[test]"
pip install -r requirements.github_actions.txt
popd

# poetry update will upgrade only to the latest versions that are released.
Expand All @@ -119,7 +119,7 @@ pip install -e ScopeSim
pip install -e ScopeSim_Templates
pip install -e skycalc_ipy
pip install -e AnisoCADO
pip install -e irdb
# pip install -e irdb


# Run the tests.
Expand Down