summaryrefslogtreecommitdiffstats
path: root/tests/lib/helpers.py
blob: 308f2a506e1bc1fdbce936ab400e1cdc6fa40260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python
# coding: utf-8 -*-
# pylint: disable=logger-format-interpolation
# pylint: disable=dangerous-default-value
# flake8: noqa: W503
# flake8: noqa: W1202

from __future__ import (absolute_import, division, print_function)

import os

from eos_downloader.data import DATA_MAPPING



def default_filename(version: str, info):
    """
    default_filename Helper to build default filename

    Parameters
    ----------
    version : str
        EOS version
    info : dict
        TEST Inputs

    Returns
    -------
    str
        Filename
    """
    if version is None or info is None:
        return None
    return DATA_MAPPING[info['software']]['default']['prepend'] + '-' + version + '.swi'


def is_on_github_actions():
    """Check if code is running on a CI runner"""
    if "CI" not in os.environ or not os.environ["CI"] or "GITHUB_RUN_ID" not in os.environ:
        return False