mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
awx-api-lint: Fix setup.cfg syntax for linter test
Signed-off-by: Yanis Guenane <yguenane@redhat.com>
This commit is contained in:
parent
4912cbd2da
commit
07232f3694
@ -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:
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
|
||||
@ -25,5 +25,5 @@ deps =
|
||||
flake8
|
||||
yamllint
|
||||
commands =
|
||||
- flake8
|
||||
- yamllint -s .
|
||||
flake8
|
||||
yamllint -s .
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user