Skip to content

Commit 8e9d696

Browse files
authored
Merge pull request #232 from h-michael/fix-skptic
Remove #[cfg(tests)] from build.rs
2 parents 298041a + 93d9a04 commit 8e9d696

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

graphql_client/build.rs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
extern crate skeptic;
22

33
fn main() {
4-
#[cfg(tests)]
5-
{
6-
// Generates doc tests for the readme.
7-
skeptic::generate_doc_tests(&["../README.md"]);
8-
}
4+
// Generates doc tests for the readme.
5+
skeptic::generate_doc_tests(&["../README.md"]);
96
}

0 commit comments

Comments
 (0)