From 74f3760c94c4f4456989b4b2810ded69d33a7816 Mon Sep 17 00:00:00 2001 From: James Kominick Date: Sun, 6 May 2018 01:43:30 -0400 Subject: [PATCH] add development setup notes --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index dde5cdb2..dd765980 100644 --- a/README.md +++ b/README.md @@ -114,6 +114,20 @@ from graphql.execution.execute import execute execute(schema, ast, executor=SyncExecutor()) ``` +### Development + +Install development and test dependencies: + +```sh +pip install -e ".[test]" +``` + +Run test suite: + +```sh +pytest +``` + ## Main Contributors * [@syrusakbary](https://github.com/syrusakbary/)