-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #402 from MetaCell/feature/392
Python 3.9 upgrade
- Loading branch information
Showing
15 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG PARENT=python:3.7.9-alpine | ||
ARG PARENT=python:3.9.10-alpine | ||
FROM ${PARENT} | ||
|
||
RUN apk update | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
coverage>=4.0.3 | ||
nose>=1.3.7 | ||
pluggy>=0.3.1 | ||
py>=1.4.31 | ||
randomize>=0.13 | ||
pytest>=5.0.0 | ||
pytest-cov | ||
coverage==6.3.2 | ||
nose==1.3.7 | ||
randomize==0.14 | ||
py==1.11.0 | ||
pyparsing==3.0.8 | ||
pytest==7.1.2 | ||
pytest-cov==3.0.0 | ||
-e . | ||
-e ../client/cloudharness_cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[tox] | ||
envlist = py3 | ||
envlist = py3{9,} | ||
|
||
[testenv] | ||
deps=-r{toxinidir}/test-requirements.txt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM python:3.7-alpine | ||
FROM python:3.9.10-alpine | ||
ENV DEPLOY_DIR=deployment | ||
|
||
COPY . cloudharness_utilities | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
tools/cloudharness_utilities/deployment-configuration/helm/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# CloudHarness Helm chart: deploy CloudHarness to k8s | ||
|
||
Helm is used to define the CloudHarness deployment on Kubernetes. For further information about Helm, see https://helm.sh. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
coverage>=4.0.3 | ||
nose>=1.3.7 | ||
pluggy>=0.3.1 | ||
py>=1.4.31 | ||
randomize>=0.13 | ||
pytest>=5.0.0 | ||
pytest-cov | ||
-e . | ||
coverage==6.3.2 | ||
nose==1.3.7 | ||
randomize==0.14 | ||
py==1.11.0 | ||
pyparsing==3.0.8 | ||
pytest==7.1.2 | ||
pytest-cov==3.0.0 | ||
-e . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
[tox] | ||
envlist = py3 | ||
envlist = py3{9,} | ||
|
||
[testenv] | ||
deps=-r{toxinidir}/test-requirements.txt | ||
|
||
commands= | ||
coverage run --source cloudharness_utilities -m pytest -v | ||
coverage report -m | ||
coverage report -m |