File: unittests

package info (click to toggle)
python-marshmallow 3.26.1-0.4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,296 kB
  • sloc: python: 11,513; makefile: 11; sh: 8
file content (13 lines) | stat: -rw-r--r-- 283 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e
set -x

excludes='not test_version_attributes_deprecated'

arch="$(dpkg --print-architecture)"
if [ "$arch" = "i386" ]; then
    excludes="$excludes and not test_from_timestamp_with_overflow_value"
fi

PYTHONPATH=`pwd`/src python3 -m pytest tests -v -k "$excludes"