-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nosetests and mysql to dev container
- Loading branch information
Showing
3 changed files
with
44 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ARG PY_VER | ||
ARG DISTRO | ||
FROM mcr.microsoft.com/devcontainers/python:${PY_VER}-${DISTRO} | ||
RUN \ | ||
apt update && \ | ||
apt-get install bash-completion graphviz default-mysql-client -y && \ | ||
pip install flake8 black faker ipykernel pytest pytest-cov nose nose-cov datajoint && \ | ||
pip uninstall datajoint -y | ||
|
||
USER root | ||
ENV DJ_HOST fakeservices.datajoint.io | ||
ENV DJ_USER root | ||
ENV DJ_PASS password |
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