File: run_python3.sh

package info (click to toggle)
pytsk 20200117-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,356 kB
  • sloc: ansic: 3,090; python: 3,007; sh: 115; makefile: 68
file content (19 lines) | stat: -rwxr-xr-x 371 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
#
# Script to run Python 3 tests on Travis-CI.
#
# This file is generated by l2tdevtools update-dependencies.py, any dependency
# related changes should be made in dependencies.ini.

# Exit on error.
set -e;

python3 setup.py update

python3 setup.py build

PYTHONPATH=`ls -1d build/lib.*` python3 run_tests.py

python3 setup.py sdist

python3 setup.py bdist