Skip to content

Commit

Permalink
Merge branch 'stable/4.4' into mergify/bp/stable/4.4/pr-1250
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Jun 15, 2022
2 parents a38dbb8 + a46f0d4 commit 6663457
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/gnocchi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ jobs:
python:
- py36
- py38
- py39
env:
- mysql-file
- mysql-swift
Expand All @@ -123,6 +124,10 @@ jobs:
python: py36
- env: postgresql-ceph
python: py36
- env: mysql-ceph
python: py39
- env: postgresql-ceph
python: py39
steps:
- uses: actions/checkout@v2
- run: sudo chown -R 1001:1001 $GITHUB_WORKSPACE
Expand Down
12 changes: 12 additions & 0 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ queue_rules:
- check-success=test (py38, postgresql-swift)
- check-success=test (py38, postgresql-s3)
- check-success=test (py38, postgresql-ceph)
- check-success=test (py39, mysql-file)
- check-success=test (py39, mysql-swift)
- check-success=test (py39, mysql-s3)
- check-success=test (py39, postgresql-file)
- check-success=test (py39, postgresql-swift)
- check-success=test (py39, postgresql-s3)

pull_request_rules:
- name: automatic merge
Expand Down Expand Up @@ -45,6 +51,12 @@ pull_request_rules:
- check-success=test (py38, postgresql-swift)
- check-success=test (py38, postgresql-s3)
- check-success=test (py38, postgresql-ceph)
- check-success=test (py39, mysql-file)
- check-success=test (py39, mysql-swift)
- check-success=test (py39, mysql-s3)
- check-success=test (py39, postgresql-file)
- check-success=test (py39, postgresql-swift)
- check-success=test (py39, postgresql-s3)

- name: automatic merge backports from Mergify
actions:
Expand Down
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description = Metric as a Service
long_description = file: README.rst
long_description_content_type = text/x-rst
author = Gnocchi developers
python_requires = >=3.6
classifier =
Intended Audience :: Information Technology
Intended Audience :: System Administrators
Expand All @@ -14,8 +15,10 @@ classifier =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: System :: Monitoring

[options]
Expand Down
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4
envlist = {py36,py38}-{postgresql,mysql}{,-file,-swift,-ceph,-s3},pep8
envlist = {py36,py38,py39}-{postgresql,mysql}{,-file,-swift,-ceph,-s3},pep8
skipsdist = True

[testenv]
Expand Down Expand Up @@ -54,7 +54,7 @@ commands =
{toxinidir}/run-tests.sh {posargs}
{toxinidir}/run-func-tests.sh {posargs}

[testenv:{py36,py38}-postgresql-file-upgrade-from-4.3]
[testenv:{py36,py38,py39}-postgresql-file-upgrade-from-4.3]
# We should always recreate since the script upgrade
# Gnocchi we can't reuse the virtualenv
recreate = True
Expand All @@ -69,7 +69,7 @@ deps =
xattr!=0.9.4
commands = {toxinidir}/run-upgrade-tests.sh postgresql-file

[testenv:{py36,py38}-mysql-ceph-upgrade-from-4.3]
[testenv:{py36,py38,py39}-mysql-ceph-upgrade-from-4.3]
# We should always recreate since the script upgrade
# Gnocchi we can't reuse the virtualenv
recreate = True
Expand All @@ -89,7 +89,7 @@ basepython = python3
deps = hacking>=0.12
commands = flake8

[testenv:{py36,py38}-cover]
[testenv:{py36,py38,py39}-cover]
setenv =
{[testenv]setenv}
PYTHON=coverage run --source gnocchi --parallel-mode
Expand Down

0 comments on commit 6663457

Please sign in to comment.