mirror of
https://github.com/certbot/certbot.git
synced 2026-08-04 04:02:32 +02:00
Don't run pep8 for directories that we don't actually enforce pep8 on. Install dependencies with -q. Don't print reports, they make it hard to find the actual errors. Remove deprecated fields from acme .pylintrc, they cause unnecessary messages about deprecation.
6 lines
62 B
Bash
Executable File
6 lines
62 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e # Fail fast
|
|
|
|
pep8 --config=acme/.pep8 acme
|