Skip to content

Commit 16cfbfd

Browse files
committed
src/sage/graphs: move is_projective_planar() tests to a subdirectory
A simple `git mv` with an update of the associated meson.build files.
1 parent 4082474 commit 16cfbfd

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

src/sage/graphs/meson.build

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ py.install_sources(
6767
'independent_sets.pyx',
6868
'isgci.py',
6969
'isoperimetric_inequalities.pyx',
70-
'is_projective_planar_test.py',
7170
'line_graph.pyx',
7271
'lovasz_theta.py',
7372
'matching.py',
@@ -92,6 +91,7 @@ py.install_sources(
9291
subdir: 'sage/graphs',
9392
)
9493

94+
9595
extension_data = {
9696
'asteroidal_triples' : files('asteroidal_triples.pyx'),
9797
'centrality' : files('centrality.pyx'),
@@ -179,3 +179,4 @@ py.extension_module(
179179
subdir('base')
180180
subdir('generators')
181181
subdir('graph_decompositions')
182+
subdir('tests')
File renamed without changes.

src/sage/graphs/tests/meson.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
py.install_sources(
2+
'__init__.py',
3+
'is_projective_planar_test.py',
4+
subdir: 'sage/graphs/tests',
5+
)

0 commit comments

Comments
 (0)