diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 94504c7..2a7c212 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,15 +1,17 @@ -name: CI +name: tests -on: [push, pull_request] +on: + - push + - pull_request jobs: - tests: + tox: runs-on: ubuntu-latest container: image: python:3.10 steps: - name: Packages - run: pip install 'tox<4' + run: pip install tox - name: Checkout uses: actions/checkout@v3 - name: Tox diff --git a/.gitignore b/.gitignore index b8140bd..4aa8e47 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ *.py[cod] /*.egg-info/ /.tox/ +/AUTHORS +/ChangeLog __pycache__/ files-upstream/ files-generated/ diff --git a/README.md b/README.md index 7a5f887..301a430 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Znoyder -![](https://github.com/rhos-infra/znoyder/workflows/CI/badge.svg) +![](https://github.com/RedHatCRE/znoyder/workflows/tests/badge.svg) The goal of this project is to automate preparation of downstream CI jobs for Red Hat OpenStack Platform (OSP) releases. diff --git a/setup.cfg b/setup.cfg index 66bae3f..287f74e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,11 +1,11 @@ [metadata] name = znoyder description_file = README.md -home_page = https://github.com/rhos-infra/znoyder +home_page = https://github.com/RedHatCRE/znoyder author = Red Hat Code Reliability Engineering Team -author_email = rhos-cre@redhat.com -maintainer = Red Hat Code Reliability Engineering Team -maintainer_email = rhos-cre@redhat.com +author_email = rhos-dfg-cre@redhat.com +maintainer = Red Hat CI OPS Team +maintainer_email = rhos-dfg-ciops@redhat.com classifier = Intended Audience :: Developers Intended Audience :: Information Technology diff --git a/tox.ini b/tox.ini index 715254b..92f9ff5 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -skipsdist = True +skipsdist = False envlist = coverage,doctest,pep8,unit,yamllint [testenv]