mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
* move current integration tests to the integration folder * move pyscript.py into its own python folder * change the path for python unit testing files * change pyscript.py path * Update Makefile * remove echo * replace conda run with pytest directly * oops, add python test files I embarrassingly forgot to add Co-authored-by: Peter W <34256109+pww217@users.noreply.github.com>
9 lines
219 B
Python
9 lines
219 B
Python
"""All data required for testing examples"""
|
|
import pathlib
|
|
import sys
|
|
|
|
# current working directory
|
|
base_path = pathlib.Path().absolute()
|
|
python_source = base_path / "src" / "python"
|
|
sys.path.append(str(python_source))
|