Adding upstream version 0.8.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
b16cc97368
commit
55e5e7ac79
49 changed files with 4592 additions and 0 deletions
40
tests/lib/helpers.py
Normal file
40
tests/lib/helpers.py
Normal file
|
@ -0,0 +1,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
|
Loading…
Add table
Add a link
Reference in a new issue