mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 17:24:46 +00:00
11 lines
222 B
Bash
Executable File
11 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
# 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
|