mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 20:51:58 +00:00
16 lines
485 B
Bash
Executable File
16 lines
485 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020 mojib wali.
|
|
#
|
|
# invenio-theme-tugraz is free software; you can redistribute it and/or
|
|
# modify it under the terms of the MIT License; see LICENSE file for more
|
|
# details.
|
|
|
|
python -m check_manifest --ignore ".*-requirements.txt"
|
|
python -m sphinx.cmd.build -qnNW docs docs/_build/html
|
|
docker-services-cli --verbose up es postgresql redis
|
|
python -m pytest
|
|
tests_exit_code=$?
|
|
docker-services-cli down
|
|
exit "$tests_exit_code" |