Skip to content
Open
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build-and-test:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
lint-and-coverage:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand All @@ -40,7 +40,7 @@ jobs:
test-on-k8s:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
publish-to-pypi:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
google-auth==1.21.3
kubernetes>=21.7.0
kubernetes<25.0.0
robotframework>=3.2.2
urllib3-mock>=0.3.3
2 changes: 1 addition & 1 deletion testcases/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.0-alpine
FROM python:3.8.0-alpine
COPY setup.py README.md requirements.txt ./
COPY src ./src
COPY testcases ./testcases
Expand Down