Answers for "pytest tests in subfolder"

0

pytest tests in subfolder

# Create a file containing

import os, pathlib
import pytest

os.chdir( pathlib.Path.cwd() / 'Tests' )

pytest.main()

# And use the command `python tests.py` to run it.
Posted by: Guest on January-22-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language