summaryrefslogtreecommitdiff
path: root/subplotlib/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'subplotlib/build.rs')
-rw-r--r--subplotlib/build.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/subplotlib/build.rs b/subplotlib/build.rs
index a809a68..d1eeefd 100644
--- a/subplotlib/build.rs
+++ b/subplotlib/build.rs
@@ -18,6 +18,8 @@ fn main() {
let subplots = glob("*.md").expect("failed to find subplots in subplotlib");
let tests = Path::new("tests");
let subplots = subplots.chain(Some(Ok("../subplot.md".into())));
+ let subplots = subplots
+ .chain(glob("../tests/subplots/common/*.md").expect("failed to find common subplots"));
for entry in subplots {
let entry = entry.expect("failed to get subplot dir entry in subplotlib");
let mut inc = tests.join(&entry.file_name().unwrap());