awx-api-lint: Fix setup.cfg syntax for linter test

Signed-off-by: Yanis Guenane <yguenane@redhat.com>
This commit is contained in:
Yanis Guenane 2020-02-26 11:07:41 +01:00
parent 4912cbd2da
commit 07232f3694
4 changed files with 11 additions and 9 deletions

View File

@ -182,7 +182,8 @@ class CredentialType(HasCreate, base.Base):
response = self.connection.post(urljoin(str(self.url), 'test/'), data)
exception = exception_from_status_code(response.status_code)
exc_str = "%s (%s) received" % (
http.responses[response.status_code], response.status_code)
http.responses[response.status_code], response.status_code
)
if exception:
raise exception(exc_str, response.json())
elif response.status_code == http.FORBIDDEN:
@ -328,7 +329,8 @@ class Credential(HasCopy, HasCreate, base.Base):
response = self.connection.post(urljoin(str(self.url), 'test/'), data)
exception = exception_from_status_code(response.status_code)
exc_str = "%s (%s) received" % (
http.responses[response.status_code], response.status_code)
http.responses[response.status_code], response.status_code
)
if exception:
raise exception(exc_str, response.json())
elif response.status_code == http.FORBIDDEN:

View File

@ -1,5 +1,4 @@
from argparse import ArgumentParser
import traceback
import logging
import pdb # noqa
import sys
@ -92,8 +91,8 @@ def main():
exc = e
raise
except Exception as e:
exc = e
rc = 1
exc = e # noqa
rc = 1 # noqa
raise

View File

@ -25,5 +25,5 @@ deps =
flake8
yamllint
commands =
- flake8
- yamllint -s .
flake8
yamllint -s .

View File

@ -33,7 +33,6 @@ import subprocess
import sys
from io import StringIO
from time import time
from random import randint
from uuid import uuid4
import psycopg2
@ -200,7 +199,9 @@ def generate_events(events, job):
cursor.execute("SELECT indexname, indexdef FROM pg_indexes WHERE tablename='main_jobevent' AND indexname != 'main_jobevent_pkey';")
indexes = cursor.fetchall()
cursor.execute("SELECT conname, contype, pg_catalog.pg_get_constraintdef(r.oid, true) as condef FROM pg_catalog.pg_constraint r WHERE r.conrelid = 'main_jobevent'::regclass AND conname != 'main_jobevent_pkey';")
cursor.execute(
"SELECT conname, contype, pg_catalog.pg_get_constraintdef(r.oid, true) as condef FROM pg_catalog.pg_constraint r WHERE r.conrelid = 'main_jobevent'::regclass AND conname != 'main_jobevent_pkey';" # noqa
)
constraints = cursor.fetchall()
# drop all indexes for speed