1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-09-20 20:22:41 +01:00

#N/A Implicitly prefix containers names

This commit is contained in:
nvbn
2015-07-24 08:09:08 +03:00
parent e1416a0127
commit 174ada054d
4 changed files with 8 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ import pytest
from tests.functional.plots import with_confirmation, without_confirmation
from tests.functional.utils import spawn, functional
containers = [('thefuck/ubuntu-python3-bash', '''
containers = [('ubuntu-python3-bash', '''
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -yy python3 python3-pip python3-dev
@@ -10,7 +10,7 @@ RUN pip3 install -U setuptools
RUN ln -s /usr/bin/pip3 /usr/bin/pip
CMD ["/bin/bash"]
'''),
('thefuck/ubuntu-python2-bash', '''
('ubuntu-python2-bash', '''
FROM ubuntu:latest
RUN apt-get update
RUN apt-get install -yy python python-pip python-dev