Removes apps folder

This commit is contained in:
Sergi Delgado Segura
2020-03-18 12:09:58 +01:00
parent 3e1700f3de
commit 5e5ff0278a
19 changed files with 19 additions and 11 deletions

13
test/cli/unit/conftest.py Normal file
View File

@@ -0,0 +1,13 @@
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)