diff --git a/hacking/runtests.sh b/hacking/runtests.sh index 1a3629e..627242d 100755 --- a/hacking/runtests.sh +++ b/hacking/runtests.sh @@ -60,16 +60,16 @@ # docker run --rm -i -t -v $PWD:/home/sandbox titotest-centos-5.9 /bin/bash #titotest-centos-5.9 -#titotest-fedora-rawhide +#titotest-fedora-20 +#titotest-centos-6 distros=' -titotest-fedora-20 -titotest-centos-6 +titotest-fedora-rawhide ' -#titotest-fedora-rawhide +#titotest-fedora-20 python3_distros=' -titotest-fedora-20 +titotest-fedora-rawhide ' rm -f /tmp/titotest*.out &> /dev/null diff --git a/hacking/titotest-fedora-rawhide/Dockerfile b/hacking/titotest-fedora-rawhide/Dockerfile index 6364ec9..337f0ff 100644 --- a/hacking/titotest-fedora-rawhide/Dockerfile +++ b/hacking/titotest-fedora-rawhide/Dockerfile @@ -9,13 +9,29 @@ MAINTAINER Paul Morgan ADD tito.spec /tmp/tito.spec # Install build dependencies. -RUN yum -y install yum-utils \ - ; yum-builddep -y /tmp/tito.spec \ - ; yum clean all +RUN yum -y install \ + yum-utils \ + git-annex \ + python-mock \ + python-nose \ + python-pep8 + +RUN yum -y install \ + python3-mock \ + python3-nose \ + python3-pep8 + +RUN yum-builddep -y /tmp/tito.spec +RUN yum clean all +#RUN yum -y install yum-utils \ +# ; yum-builddep -y /tmp/tito.spec \ +# ; yum clean all + +RUN yum install -y python-devel RUN useradd sandbox -RUN git config --global user.email "sandbox@example.com" -RUN git config --global user.name "sandbox" +RUN git config --system user.email "sandbox@example.com" +RUN git config --system user.name "sandbox" USER sandbox VOLUME ["/home/sandbox"]