File: python3-vcr

package info (click to toggle)
vcr.py 2.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 908 kB
  • sloc: python: 4,940; makefile: 180; sh: 17
file content (18 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh -e

TESTS_TO_EXCLUDE="not test_response_code and \
not test_random_body and \
not test_response_headers and \
not test_effective_url and \
not test_multiple_requests and \
not test_get_data and \
not test_post_data and \
not test_post_unicode_data and \
not test_decorator and \
not test_cross_scheme"

cp -r tests "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"

py3versions -i | tr ' ' '\n' | xargs -I {} env {} -Wd -m pytest -k "${TESTS_TO_EXCLUDE}" -v -x -rs 2>&1