Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
foospidy committed Apr 19, 2019
1 parent 257abb2 commit 5874ec0
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .circleci/config.yml
Expand Up @@ -27,4 +27,9 @@ jobs:
- ./.env
key: v1-dependencies-{{ checksum "requirements.txt" }}

- run: make lint
- run:
name: Pylint
command: make lint
- run:
name: Tests
command: make tests
5 changes: 5 additions & 0 deletions Makefile
Expand Up @@ -7,5 +7,10 @@ lint:
. .env/bin/activate \
&& pylint webcve.py

tests:
. .env/bin/activate && ./webcve.py --list group
. .env/bin/activate && ./webcve.py --list type
. .env/bin/activate && ./webcve.py -v --status-code 406 --url $(TEST_TARGET)

clean:
rm -rf .env

0 comments on commit 5874ec0

Please sign in to comment.