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

Fix #112 #113

Merged
merged 30 commits into from
Jan 15, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
WIP
  • Loading branch information
jonashaag committed Jan 15, 2023
commit b64f203e4d273f49fbc79134a0c924a8ba1d6081
7 changes: 4 additions & 3 deletions .github/workflows/test_options.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,9 +127,6 @@ jobs:
run: |
set -x

# There should be no duplicate "channels:" section in .condarc.
[ 1 = $(grep "channels:" ~/.condarc | wc -l) ]

# If a single channel configuration source is provided, channels should
# be taken from that source. Otherwise, we don't make any guarantees.

Expand All @@ -146,8 +143,12 @@ jobs:

if [ $(echo $erc | grep -o 1 | wc -l) = 1 ]; then
[ $dpb = $erc ]
# There should be no duplicate "channels:" section in .condarc.
# TODO: This should be true in any case!
[ 1 = $(grep "channels:" ~/.condarc | wc -l) ]
fi


# TODO: check that ffmpeg is installed from the expected channel

test_environment_without_name:
Expand Down