File: py3

package info (click to toggle)
python-sparkpost 1.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 528 kB
  • sloc: python: 2,509; makefile: 173; sh: 10
file content (12 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
#! /bin/sh

set -e && for i in $(py3versions -sv); do \
  python$i -m pytest test/test_base.py; \
  python$i -m pytest test/test_init.py; \
  python$i -m pytest test/test_metrics.py; \
  python$i -m pytest test/test_recipient_lists.py; \
  python$i -m pytest test/test_suppression_list.py; \
  python$i -m pytest test/test_templates.py; \
  python$i -m pytest test/test_transmissions.py; \
  python$i -m pytest test/django; \
done