Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
tommybolin committed Oct 19, 2018
1 parent da18ac4 commit d39ffbd
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion docs/config_sphinx.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,30 @@
HERE = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.abspath(os.path.join(HERE, '../_ext')))

from common import GLOBAL_LINKS # noqa isort:skip
# Submodules
CURDIR = os.path.abspath('../')
bashCommand = "git --git-dir={0}/.git --work-tree={0}".format(
CURDIR
) + " submodule update --init --recursive"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()

# Install
bashCommand = "pip install -r requirements.txt"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()

# Install
bashCommand = "ls -la"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()

# Install
bashCommand = "pwd"
process = subprocess.Popen(bashCommand.split(), stdout=subprocess.PIPE)
output, error = process.communicate()

from common import GLOBAL_LINKS # noqa isort:skip

links_collection = GLOBAL_LINKS

Expand Down

0 comments on commit d39ffbd

Please sign in to comment.