mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:19:46 +00:00
13 lines
369 B
Bash
Executable File
13 lines
369 B
Bash
Executable File
#!/bin/sh
|
|
# author: deadc0de6 (https://github.com/deadc0de6)
|
|
# Copyright (c) 2017, deadc0de6
|
|
|
|
# stop on first error
|
|
set -ev
|
|
|
|
pep8 dotdrop/
|
|
pep8 tests/
|
|
PYTHONPATH=dotdrop nosetests --with-coverage --cover-package=dotdrop
|
|
#PYTHONPATH=dotdrop nosetests -s --with-coverage --cover-package=dotdrop
|
|
#PYTHONPATH=dotdrop python3 -m nose --with-coverage --cover-package=dotdrop
|