File size: 575 Bytes
f0f4f2b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/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

cargo build -p deltachat_ffi --features jsonrpc

# 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
tox -e py -- "$@"