Skip to content

Commit

Permalink
TST: Use defaults packages instead of conda-forge
Browse files Browse the repository at this point in the history
  • Loading branch information
carterbox committed Mar 21, 2024
1 parent e598d6a commit 8dd906d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
13 changes: 10 additions & 3 deletions tests/test-recipes/split-packages/copying_files/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ package:

requirements:
run:
- my_script_subpackage
- my_script_subpackage_files
- my_script_subpackage_include_exclude

outputs:
- name: my_script_subpackage_files
build:
ignore_run_exports_from:
- dav1d
requirements:
host:
- libdav1d7
- dav1d=1.2.1
files:
- subpackage_file1
- somedir
Expand All @@ -22,9 +26,12 @@ outputs:
script: subpackage_test.py
script_interpreter: python
- name: my_script_subpackage_include_exclude
build:
ignore_run_exports_from:
- dav1d
requirements:
host:
- libdav1d7
- dav1d=1.2.1
files:
include:
- subpackage_file1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@
assert 'weee' in contents, 'incorrect file contents: %s' % contents
print('glob OK')

external_host_file = 'lib/libdav1d.so.7'
external_host_file = 'lib/libdav1d.so.6'
if 'osx' in os.getenv('target_platform', ''):
external_host_file = 'lib/libdav1d.7.dylib'
external_host_file = 'lib/libdav1d.6.dylib'
if 'win' in os.getenv('target_platform', ''):
external_host_file = 'Library/bin/dav1d.dll'

Expand Down

0 comments on commit 8dd906d

Please sign in to comment.