Revision 4f9ce69d21ba937af397412f6435c2429289f8ab authored by James Foucar on 09 February 2022, 17:45:29 UTC, committed by GitHub on 09 February 2022, 17:45:29 UTC
Automate documentation

Adds a Github Actions workflow to automate publishing documentation.

This workflow will trigger on a push to master that contains any changes
to files under doc/. The workflow builds and pushes changes to the
gh-pages branch.

Test suite: n/a
Test baseline: n/a
Test namelist changes: n/a
Test status: n/a

Fixes n/a
User interface changes?: n/a
Update gh-pages html (Y/N)?: N
2 parent s 108b0cc + 4f21841
Raw File
conftest.py
import os
import sys

CIMEROOT = os.path.abspath(os.path.join(os.path.dirname(__file__), "scripts", "lib"))
sys.path.insert(0, CIMEROOT)

import pytest

from CIME import utils
from CIME.tests import scripts_regression_tests

os.environ["CIME_GLOBAL_WALLTIME"] = "0:05:00"


def pytest_addoption(parser):
    # set addoption as add_argument to use common argument setup
    # pytest's addoption has same signature as add_argument
    setattr(parser, "add_argument", parser.addoption)

    scripts_regression_tests.setup_arguments(parser)

    # verbose and debug flags already exist
    parser.addoption("--silent", action="store_true", help="Disable all logging")


def pytest_configure(config):
    kwargs = vars(config.option)

    utils.configure_logging(kwargs["verbose"], kwargs["debug"], kwargs["silent"])

    scripts_regression_tests.configure_tests(**kwargs)


@pytest.fixture(scope="session", autouse=True)
def setup(pytestconfig):
    os.chdir(CIMEROOT)
back to top