mirror of
https://github.com/Cian-H/invenio-config-iform.git
synced 2025-12-22 21:11:57 +00:00
17 lines
520 B
Bash
Executable File
17 lines
520 B
Bash
Executable File
#!/usr/bin/env sh
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright (C) 2020 Mojib Wali.
|
|
#
|
|
# invenio-config-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.
|
|
|
|
docker-services-cli up postgresql es redis
|
|
python -m check_manifest --ignore ".travis-*" && \
|
|
python -m sphinx.cmd.build -qnNW docs docs/_build/html && \
|
|
docker-services-cli up es postgresql redis
|
|
python -m pytest
|
|
tests_exit_code=$?
|
|
docker-services-cli down
|
|
exit "$tests_exit_code" |