Apply suggestions from code review

Co-authored-by: Erik Sundell <erik.i.sundell@gmail.com>
This commit is contained in:
Ayaz Salikhov
2022-02-02 12:41:16 +03:00
committed by GitHub
parent 6ff12c18a9
commit 12ccbf5149
5 changed files with 11 additions and 5 deletions

View File

@@ -5,7 +5,9 @@ The dependencies resolution is a difficult thing to do
This means that packages might have old versions.
Images are rebuilt weekly, so usually, packages receive updates quite frequently.
_Note: We pin major.minor version of python, so it will stay the same even after `mamba update` command._
```{note}
We pin major.minor version of python, so it will stay the same even after `mamba update` command.
```
## Outdated packages

View File

@@ -18,7 +18,7 @@ defined in the [conftest.py](https://github.com/jupyter/docker-stacks/blob/maste
If you want to simply run a python script in one of our images, you could add a unit test.
Simply create `<somestack>-notebook/test/units/` directory, if it doesn't already exist and put your file there.
These file will run automatically when tests are run.
You could see an example for tensorflow package [here](https://github.com/jupyter/docker-stacks/blob/master/tensorflow-notebook/test/units/unit_tensorflow.py).
You could see an example for tensorflow package [here](https://github.com/jupyter/docker-stacks/blob/HEAD/tensorflow-notebook/test/units/unit_tensorflow.py).
## Contributing New Tests