aboutsummaryrefslogtreecommitdiffstats
path: root/tests/files/ansible/test-files/docker-python
diff options
context:
space:
mode:
authorFelix Lange <fjl@users.noreply.github.com>2017-07-11 19:49:14 +0800
committerGitHub <noreply@github.com>2017-07-11 19:49:14 +0800
commit225de7ca0a9e861696a5a43b666090b574c4c769 (patch)
tree68aff6fb74fece37626ced330fa9c5da91b483a4 /tests/files/ansible/test-files/docker-python
parentbd01cd7183e771984fb9c008e7a7ebf0a0c3f9ba (diff)
downloadgo-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.gz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.bz2
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.lz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.xz
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.tar.zst
go-tangerine-225de7ca0a9e861696a5a43b666090b574c4c769.zip
tests: update tests and implement general state tests (#14734)
Tests are now included as a submodule. This should make updating easier and removes ~60MB of JSON data from the working copy. State tests are replaced by General State Tests, which run the same test with multiple fork configurations. With the new test runner, consensus tests are run as subtests by walking json files. Many hex issues have been fixed upstream since the last update and most custom parsing code is replaced by existing JSON hex types. Tests can now be marked as 'expected failures', ensuring that fixes for those tests will trigger an update to test configuration. The new test runner also supports parallel execution and the -short flag.
Diffstat (limited to 'tests/files/ansible/test-files/docker-python')
-rw-r--r--tests/files/ansible/test-files/docker-python/Dockerfile23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/files/ansible/test-files/docker-python/Dockerfile b/tests/files/ansible/test-files/docker-python/Dockerfile
deleted file mode 100644
index e83faf3d6..000000000
--- a/tests/files/ansible/test-files/docker-python/Dockerfile
+++ /dev/null
@@ -1,23 +0,0 @@
-FROM ubuntu:14.04
-
-ENV DEBIAN_FRONTEND noninteractive
-RUN apt-get update
-RUN apt-get upgrade -y
-
-RUN apt-get install -qy curl git python2.7 python-pip python-dev
-
-# this is a workaround, to make sure that docker's cache is invalidated whenever the git repo changes
-ADD https://api.github.com/repos/ethereum/pyethereum/git/refs/heads/develop unused.txt
-
-RUN git clone --branch develop --recursive https://github.com/ethereum/pyethereum.git
-
-RUN cd pyethereum && curl https://bootstrap.pypa.io/bootstrap-buildout.py | python
-
-RUN cd pyethereum && bin/buildout
-
-#default port for incoming requests
-EXPOSE 30303
-
-WORKDIR /pyethereum
-
-ENTRYPOINT ["bin/python", "tests/test_vm.py"]