Skip to content

Instantly share code, notes, and snippets.

@deathowl
Created January 2, 2021 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deathowl/e30bb72a791e362b3a8cf0e45e56c4f3 to your computer and use it in GitHub Desktop.
Save deathowl/e30bb72a791e362b3a8cf0e45e56c4f3 to your computer and use it in GitHub Desktop.
~/work/TestSlide(requirements*) » docker build -t testslide-dev . deathowl@Therian
Sending build context to Docker daemon 226.5MB
Step 1/13 : FROM python:3.8
---> f5041c8ae6b1
Step 2/13 : WORKDIR /code
---> Using cache
---> db0ee56d907d
Step 3/13 : RUN apt-get update && apt-get install -y make && rm -rf /var/lib/apt/lists/*
---> Using cache
---> bde8fa75c548
Step 4/13 : COPY requirements.txt .
---> Using cache
---> 9e342dec6a0d
Step 5/13 : COPY requirements-dev.txt .
---> Using cache
---> 2e4e4e1efccc
Step 6/13 : RUN pip install -r requirements.txt
---> Using cache
---> 9c313b310603
Step 7/13 : RUN pip install -r requirements-dev.txt
---> Using cache
---> c0d131e3fc19
Step 8/13 : COPY testslide ./testslide
---> Using cache
---> 489025a569c4
Step 9/13 : COPY tests ./tests
---> Using cache
---> a3a012d65032
Step 10/13 : COPY util ./util
---> Using cache
---> 0a1831ce3023
Step 11/13 : COPY Makefile .
---> Using cache
---> 7749733c9b3a
Step 12/13 : COPY mypy.ini .
---> a566f34dfd0e
Step 13/13 : CMD ["/usr/bin/make", "tests"]
---> Running in 24028dccf9ca
Removing intermediate container 24028dccf9ca
---> 3532e6026e54
Successfully built 3532e6026e54
Successfully tagged testslide-dev:latest
(.venv) ---------------------------------------------------------------------------------------------------------------------------------------------------------
~/work/TestSlide(requirements*) » docker run testslide-dev deathowl@Therian
tput: No value for $TERM and no -T specified
tput: No value for $TERM and no -T specified
COVERAGE ERASE
UNITTEST tests/testcase_unittest.py
UNITTEST tests/dsl_unittest.py
UNITTEST tests/cli_unittest.py
UNITTEST tests/matchers_unittest.py
TESTSLIDE tests/mock_async_callable_testslide.py
TESTSLIDE tests/mock_constructor_testslide.py
TESTSLIDE tests/lib_testslide.py
TESTSLIDE tests/patch_attribute_testslide.py
TESTSLIDE tests/mock_callable_testslide.py
TESTSLIDE tests/strict_mock_testslide.py
MYPY tests testslide util
FLAKE8 tests testslide util
ISORT tests testslide util
BLACK tests testslide util
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment