diff --git a/conda/recipes/rapids_build_backend/meta.yaml b/conda/recipes/rapids_build_backend/meta.yaml index ccfd126..1970ca1 100644 --- a/conda/recipes/rapids_build_backend/meta.yaml +++ b/conda/recipes/rapids_build_backend/meta.yaml @@ -16,20 +16,6 @@ build: noarch: python script: python -m pip install . -vv --no-deps -test: - requires: - - pip - - python >=3.9 - {% for r in pyproject_data.get("project", {}).get("optional-dependencies", {}).get("test", []) %} - - {{ r }} - {% endfor %} - source_files: - - tests/ - # Need the source for running tests, for whatever that's worth in a conda - # environment. - - rapids_build_backend/ - - pyproject.toml - requirements: host: - pip diff --git a/conda/recipes/rapids_build_backend/run_test.sh b/conda/recipes/rapids_build_backend/run_test.sh deleted file mode 100755 index c7f221c..0000000 --- a/conda/recipes/rapids_build_backend/run_test.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash -# Copyright (c) 2024, NVIDIA CORPORATION. - -# TODO: In a conda environment we should probably be testing without -# isolation for any tests to be meaningfully conda-specific. If we -# think that's worthwhile it will require adding an environment -# variable to conftest.py that controls whether the default `env` -# used for installation is a virtual environment or simply the -# current Python environment. -python -m pytest -v tests/