File: test.sh

package info (click to toggle)
django-graphiql-debug-toolbar 0.2.0-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: python: 155; javascript: 30; sh: 15; makefile: 11
file content (13 lines) | stat: -rwxr-xr-x 192 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash

set -e
set -x

bash ./scripts/lint.sh

pytest \
    --cov=graphiql_debug_toolbar \
    --cov=tests \
    --cov-report=term-missing \
    --cov-report=xml \
    tests ${@}