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
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]
4 changes: 3 additions & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
tox==2.9.1
tox==3.8.6
click==7.0
tabulate==0.8.3