From 1985246747865de790d53780544016b798a0be93 Mon Sep 17 00:00:00 2001 From: zhangbailin Date: Mon, 20 Mar 2023 01:53:02 +0000 Subject: [PATCH] Add pep8 task Change-Id: Ia587d3499bfdb741dc322349639022898aad012e --- .gitignore | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++-- .zuul.yaml | 9 ++++++++- 2 files changed, 63 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e4a81ae..2de6017 100644 --- a/.gitignore +++ b/.gitignore @@ -1,12 +1,65 @@ +# Add patterns in here to exclude files created by tools integrated with this +# repository, such as test frameworks from the project's recommended workflow, +# rendered documentation and package builds. +# +# Don't add patterns to exclude files created by preferred personal tools +# (editors, IDEs, your operating system itself even). These should instead be +# maintained outside the repository, for example in a ~/.gitignore file added +# with: +# +# git config --global core.excludesfile '~/.gitignore' + +# Bytecompiled Python *.py[cod] # C extensions *.so -#IntelJ Idea -.idea/ +# Packages +*.egg* +*.egg-info +dist +build +eggs +parts +bin +var +sdist +develop-eggs +.installed.cfg +lib +lib64 +# tempest config file and logs +etc/ +tempest.log + +# Installer logs +pip-log.txt + +# Unit test / coverage reports +cover/ +.coverage* +!.coveragerc +.tox +nosetests.xml +.testrepository +.stestr +.venv # Translations *.mo +# Complexity +output/*.html +output/*/index.html + +# Sphinx +doc/build + +# pbr generates these +AUTHORS +ChangeLog + +# Files created by releasenotes build +releasenotes/build diff --git a/.zuul.yaml b/.zuul.yaml index e7c200a..1d91916 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,3 +1,10 @@ - project: + queue: venus templates: - - noop-jobs + - check-requirements + check: + jobs: + - openstack-tox-pep8 + gate: + jobs: + - openstack-tox-pep8