aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Drewes <Holger.Drewes@gmail.com>2018-10-19 01:01:47 +0800
committerGitHub <noreply@github.com>2018-10-19 01:01:47 +0800
commit5b4cc6c9d5b4004be8369852e5f9cfe4e81200df (patch)
tree422bd41f9d41ed8d5fad0753725501dec49cc3d9
parent104078cd6be60790b53481c72bbad7e81ba5fb21 (diff)
parent5aa081ef5c2594a7c3cc2cb73916d901c23b4ab4 (diff)
downloaddexon-tests-5b4cc6c9d5b4004be8369852e5f9cfe4e81200df.tar.gz
dexon-tests-5b4cc6c9d5b4004be8369852e5f9cfe4e81200df.tar.zst
dexon-tests-5b4cc6c9d5b4004be8369852e5f9cfe4e81200df.zip
Merge pull request #527 from ansermino/david/setup
Setup Improvements
-rw-r--r--.gitignore1
-rw-r--r--README.md9
-rw-r--r--requirements.txt3
3 files changed, 13 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 88e589596..c29aa8489 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@ docs/_build/
.vagrant/
*.pem
src/GenStateTestAsBcTemp/
+.env3/ \ No newline at end of file
diff --git a/README.md b/README.md
index e66791666..d9c063da3 100644
--- a/README.md
+++ b/README.md
@@ -40,6 +40,15 @@ Arrays are allowed, but don't use them for sets of properties - only use them fo
Test Set Sanitation
-------------------
+### Setup
+
+(Requires `virtualenv`)
+```
+#> virtualenv -p python3 .env3
+#> . .env3/bin/activate
+#> python3 -m pip install -r requirements.txt
+```
+
### Checkers
Several basic checks against the test-set are performed to ensure that they have been filled and are formatted correctly.
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 000000000..05c5cca0a
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,3 @@
+pyaml>=17.0,<18
+pysha3>=1.0,<2.0
+jsonschema>=2.6,<3.0