Rename ci_scripts/ into scripts/

This commit is contained in:
link2xt
2021-04-18 20:13:51 +03:00
parent baae31117f
commit 87cb5de8b1
21 changed files with 11 additions and 11 deletions

25
scripts/run-python-test.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
#
# Run functional tests for Delta Chat core using the python bindings
# and tox/pytest.
set -e -x
shopt -s huponexit
# for core-building and python install step
export DCC_RS_TARGET=debug
export DCC_RS_DEV=`pwd`
cd python
python install_python_bindings.py onlybuild
# remove and inhibit writing PYC files
rm -rf tests/__pycache__
rm -rf src/deltachat/__pycache__
export PYTHONDONTWRITEBYTECODE=1
# run python tests (tox invokes pytest to run tests in python/tests)
#TOX_PARALLEL_NO_SPINNER=1 tox -e lint,doc
tox -e lint
tox -e doc,py37