From 9bf7ea2eaf2456b5759c0bb88ffb4610dddebdef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edvin=20Bergstr=C3=B6m?= <edvbe696@student.liu.se> Date: Wed, 19 Aug 2020 09:29:09 +0200 Subject: [PATCH] A fix for issue 19 --- .gitlab-ci.yml | 1 + docs/library_import_check.py | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 docs/library_import_check.py diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 49f5cb9..25381e1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ pages: - cmake .. - make library - cd ../docs + - python3 library_import_check.py - make html - cd .. - mkdir public diff --git a/docs/library_import_check.py b/docs/library_import_check.py new file mode 100644 index 0000000..0744294 --- /dev/null +++ b/docs/library_import_check.py @@ -0,0 +1,3 @@ +import sys,os +import conf +import library \ No newline at end of file -- GitLab