Skip to content
Snippets Groups Projects
Select Git revision
  • d8582637e34cccd44054be1f28aaeb236d7d9c80
  • master default
2 results

run-tests.sh

Blame
  • user avatar
    David authored and GitHub committed
    ci: use i18n reusable workflows
    53ca6904
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    run-tests.sh 608 B
    #!/usr/bin/env bash
    # -*- coding: utf-8 -*-
    #
    # This file is part of Invenio.
    # Copyright (C) 2016-2020 CERN.
    # Copyright (C) 2020 Northwestern University.
    #
    # Invenio 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 setup extract_messages --output-file /dev/null
    python -m sphinx.cmd.build -qnNW docs docs/_build/html && \
    python -m pytest
    python -m sphinx.cmd.build -qnNW -b doctest docs docs/_build/doctest
    tests_exit_code=$?
    exit "$tests_exit_code"