diff --git a/Dockerfile b/Dockerfile index 190ad6ef..aa0003c7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,10 +5,13 @@ WORKDIR /usr/src/databricks-cli COPY . . RUN pip install --upgrade pip && \ - pip install -r dev-requirements.txt && \ + pip install \ + -r dev-requirements.txt \ + -r tox-requirements.txt && \ pip list && \ ./lint.sh && \ pip install . && \ - pytest tests + pytest tests && \ + pip uninstall -y -r tox-requirements.txt ENTRYPOINT [ "databricks" ] diff --git a/dev-requirements.txt b/dev-requirements.txt index 8ef288ec..4d1c5759 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1 +1,3 @@ -tox==2.9.1 +tox==3.8.6 +click==7.0 +tabulate==0.8.3