Skip to content

Commit 52be406

Browse files
Merge
2 parents fb0d3f8 + 1960109 commit 52be406

File tree

77 files changed

+8583
-2917
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+8583
-2917
lines changed

conftest.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
import os
12
import distutils.core
3+
import subprocess
24

35

46
def pytest_configure(config):
57
distutils.core.run_setup(
68
"./setup.py", script_args=["build_ext", "--inplace"], stop_after="run"
79
)
10+
11+
# Ensure graphblas-opt is built
12+
subprocess.run(["python", os.path.join("mlir_graphblas", "src", "build.py")])
13+
814
return

continuous_integration/conda/meta.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ test:
4040
- coverage
4141

4242
commands:
43+
- python -c "import mlir_graphblas"
4344
- pytest --pyargs mlir_graphblas.tests
4445

4546
about:

continuous_integration/environment.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,7 @@ dependencies:
2222
- pygments
2323
- cython
2424
- jinja2
25+
# temp restrictions until graphblas-opt is built in setup.py
26+
- cmake>=3.13.4
27+
- ninja
28+
- lit

0 commit comments

Comments
 (0)