mirror of
https://github.com/deadc0de6/catcli
synced 2024-11-13 07:10:26 +00:00
15 lines
289 B
Bash
Executable File
15 lines
289 B
Bash
Executable File
#!/bin/sh
|
|
# author: deadc0de6 (https://github.com/deadc0de6)
|
|
# Copyright (c) 2017, deadc0de6
|
|
|
|
# stop on first error
|
|
set -ev
|
|
|
|
pycodestyle --ignore=W605 catcli/
|
|
pycodestyle tests/
|
|
|
|
pyflakes catcli/
|
|
pyflakes tests/
|
|
|
|
PYTHONPATH=catcli python3 -m nose -s --with-coverage --cover-package=catcli
|