File: unittests

package info (click to toggle)
python-momepy 0.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 51,428 kB
  • sloc: python: 11,098; makefile: 35; sh: 11
file content (7 lines) | stat: -rw-r--r-- 166 bytes parent folder | download
1
2
3
4
5
6
7
#!/bin/sh

set -e

for pyvers in $(py3versions -rv 2>/dev/null) ; do
	PYTHONPATH=. python$pyvers -m pytest momepy/tests -v -k 'not test_Theil and not test_Gini'
done