Skip to content

Commit

Permalink
OPS-5046 fix openjdk dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
xuzeng012 committed Jun 22, 2023
1 parent f1dd33a commit d186b08
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ LABEL maintainer="dev@tubularlabs.com"
# Install Java 8
RUN apt-get update && apt-get install -y software-properties-common
RUN apt-add-repository 'deb http://security.debian.org/debian-security stretch/updates main'
RUN apt-add-repository 'deb http://deb.debian.org/debian/ sid main'
RUN apt-get update && apt-get install -y openjdk-8-jdk

# Python env
Expand Down
10 changes: 9 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#

[tox]
envlist = spark32,spark33,no_extras,docs
envlist = spark32,spark33,spark34,no_extras,docs

[testenv:spark32]
commands = py.test --cov=sparkly --cov-report term-missing tests/integration tests/unit
Expand All @@ -33,6 +33,14 @@ deps =
-rrequirements_extras.txt
pyspark==3.3.1

[testenv:spark34]
commands = py.test --cov=sparkly --cov-report term-missing tests/integration tests/unit
deps =
-rrequirements.txt
-rrequirements_dev.txt
-rrequirements_extras.txt
pyspark==3.4.0

[testenv:no_extras]
commands = py.test tests/no_extras
deps =
Expand Down

0 comments on commit d186b08

Please sign in to comment.