Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for tox4 and minor adjustments #166

Merged
merged 1 commit into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.py[cod]
/*.egg-info/
/.tox/
/AUTHORS
/ChangeLog
__pycache__/
files-upstream/
files-generated/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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 = [email protected]
maintainer = Red Hat Code Reliability Engineering Team
maintainer_email = rhos-cre@redhat.com
author_email = rhos-dfg-[email protected]
maintainer = Red Hat CI OPS Team
maintainer_email = rhos-dfg-ciops@redhat.com
classifier =
Intended Audience :: Developers
Intended Audience :: Information Technology
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 1.6
skipsdist = True
skipsdist = False
envlist = coverage,doctest,pep8,unit,yamllint

[testenv]
Expand Down
Loading