Files
python-teos/test/cli/unit/conftest.py
Sergi Delgado Segura 5e5ff0278a Removes apps folder
2020-03-18 12:09:58 +01:00

14 lines
292 B
Python

import pytest
import random
@pytest.fixture(scope="session", autouse=True)
def prng_seed():
random.seed(0)
def get_random_value_hex(nbytes):
pseudo_random_value = random.getrandbits(8 * nbytes)
prv_hex = "{:x}".format(pseudo_random_value)
return prv_hex.zfill(2 * nbytes)