Skip to content

Commit

Permalink
Revert "Exclude tests from builds (#4147)" (#4157)
Browse files Browse the repository at this point in the history
This reverts commit 5c6c4d3.
  • Loading branch information
raydouglass authored Feb 8, 2024
1 parent 5c6c4d3 commit bb5bee2
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 10 deletions.
2 changes: 0 additions & 2 deletions python/cugraph-dgl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,3 @@ version = {file = "cugraph_dgl/VERSION"}
include = [
"cugraph_dgl*",
]
exclude = ["*tests*"]

1 change: 0 additions & 1 deletion python/cugraph-equivariant/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,3 @@ include = [
"cugraph_equivariant*",
"cugraph_equivariant.*",
]
exclude = ["*tests*"]
20 changes: 20 additions & 0 deletions python/cugraph-equivariant/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright (c) 2024, NVIDIA CORPORATION.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from setuptools import find_packages, setup

if __name__ == "__main__":
packages = find_packages(include=["cugraph_equivariant*"])
setup(
package_data={key: ["VERSION"] for key in packages},
)
2 changes: 0 additions & 2 deletions python/cugraph-pyg/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,3 @@ include = [
"cugraph_pyg*",
"cugraph_pyg.*",
]
exclude = ["*tests*"]

1 change: 0 additions & 1 deletion python/cugraph-service/client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@ version = {file = "cugraph_service_client/VERSION"}
include = [
"cugraph_service_client",
]
exclude = ["*tests*"]
1 change: 0 additions & 1 deletion python/cugraph-service/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,3 @@ include = [
"cugraph_service_server",
"cugraph_service_server.*"
]
exclude = ["*tests*"]
1 change: 0 additions & 1 deletion python/cugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ build-dir = "build/{wheel_tag}"
cmake.build-type = "Release"
cmake.minimum-version = "3.26.4"
ninja.make-fallback = true
sdist.exclude = ["*tests*"]
sdist.reproducible = true
wheel.packages = ["cugraph"]

Expand Down
1 change: 0 additions & 1 deletion python/nx-cugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ include = [
"_nx_cugraph*",
"_nx_cugraph.*",
]
exclude = ["*tests*"]

[tool.black]
line-length = 88
Expand Down
1 change: 0 additions & 1 deletion python/pylibcugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ build-dir = "build/{wheel_tag}"
cmake.build-type = "Release"
cmake.minimum-version = "3.26.4"
ninja.make-fallback = true
sdist.exclude = ["*tests*"]
sdist.reproducible = true
wheel.packages = ["pylibcugraph"]

Expand Down

0 comments on commit bb5bee2

Please sign in to comment.