From 800f3cf79f547e4e0044473e872c3ea0da9a1d2a Mon Sep 17 00:00:00 2001 From: IvanaH8 Date: Fri, 21 May 2021 17:03:24 +0200 Subject: [PATCH] Add trigger to conf.py to call generate-scope-table --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index a53fbbfc..3da73605 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -212,7 +212,7 @@ if on_rtd: # build both metrics and rest-api, since RTD doesn't run make from subprocess import check_call as sh - sh(['make', 'metrics', 'rest-api'], cwd=docs) + sh(['make', 'metrics', 'rest-api', 'scopes'], cwd=docs) # -- Spell checking -------------------------------------------------------