Skip to content

Commit 57641b4

Browse files
authored
Merge pull request #14 from stackhpc/master-workflows
feat: automatic update of workflows master
2 parents 05dae26 + 522ee59 commit 57641b4

File tree

5 files changed

+22
-44
lines changed

5 files changed

+22
-44
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Tag & Release
3+
'on':
4+
push:
5+
branches:
6+
- stackhpc/master
7+
permissions:
8+
contents: write
9+
jobs:
10+
tag-and-release:
11+
uses: stackhpc/.github/.github/workflows/tag-and-release.yml@main

.github/workflows/tox.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Tox Continuous Integration
3+
'on':
4+
pull_request:
5+
jobs:
6+
tox:
7+
uses: stackhpc/.github/.github/workflows/tox.yml@main

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

test-requirements.txt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
# The order of packages is significant, because pip processes them in the order
22
# of appearance. Changing the order has an impact on the overall integration
33
# process, which may cause wedges in the gate later.
4-
pyflakes>=2.2.0 # MIT
54
python-ironicclient # Apache-2.0
65
coverage!=4.4,>=4.0 # Apache-2.0
7-
flake8-import-order==0.11 # LGPLv3
8-
hacking<0.13,>=0.12.0 # Apache-2.0
6+
hacking>=3.0.1,<3.1.0 # Apache-2.0
97
mock>=2.0 # BSD
108
fixtures>=3.0.0 # Apache-2.0/BSD
119
testresources>=0.2.4 # Apache-2.0/BSD

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ deps =
3939
basepython = python3.8
4040
# FIXME: Use ussuri release until victoria is released.
4141
deps =
42-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/ussuri}
42+
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
4343
-r{toxinidir}/requirements.txt
4444
-r{toxinidir}/test-requirements.txt
4545

4646
[testenv:py37]
4747
basepython = python3.7
4848
deps =
49-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/ussuri}
49+
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
5050
-r{toxinidir}/requirements.txt
5151
-r{toxinidir}/test-requirements.txt
5252

5353
[testenv:py36]
5454
basepython = python3.6
5555
deps =
56-
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/train}
56+
-c{env:UPPER_CONSTRAINTS_FILE:https://releases.openstack.org/constraints/upper/yoga}
5757
-r{toxinidir}/requirements.txt
5858
-r{toxinidir}/test-requirements.txt
5959

0 commit comments

Comments
 (0)