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

Only run imports tests on x86_64 #9241

Merged
merged 1 commit into from
Sep 17, 2021
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
10 changes: 5 additions & 5 deletions conda/recipes/cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ requirements:
- packaging
- cachetools

test:
requires:
- cudatoolkit {{ cuda_version }}.*
imports:
- cudf
test: # [linux64]
requires: # [linux64]
- cudatoolkit {{ cuda_version }}.* # [linux64]
imports: # [linux64]
- cudf # [linux64]

about:
home: http://rapids.ai/
Expand Down
10 changes: 5 additions & 5 deletions conda/recipes/cudf_kafka/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ requirements:
- python-confluent-kafka
- cudf {{ version }}

test:
requires:
- cudatoolkit {{ cuda_version }}.*
imports:
- cudf_kafka
test: # [linux64]
requires: # [linux64]
- cudatoolkit {{ cuda_version }}.* # [linux64]
imports: # [linux64]
- cudf_kafka # [linux64]

about:
home: http://rapids.ai/
Expand Down
10 changes: 5 additions & 5 deletions conda/recipes/custreamz/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ requirements:
- python-confluent-kafka
- cudf_kafka {{ version }}

test:
requires:
- cudatoolkit {{ cuda_version }}.*
imports:
- custreamz
test: # [linux64]
requires: # [linux64]
- cudatoolkit {{ cuda_version }}.* # [linux64]
imports: # [linux64]
- custreamz # [linux64]

about:
home: http://rapids.ai/
Expand Down
8 changes: 4 additions & 4 deletions conda/recipes/dask-cudf/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ requirements:
- cudf {{ version }}
- dask>=2021.6.0
- distributed>=2021.6.0
test:
requires:
- cudatoolkit {{ cuda_version }}.*

test: # [linux64]
requires: # [linux64]
- cudatoolkit {{ cuda_version }}.* # [linux64]


about:
Expand Down