Skip to content
Permalink
e7f9a7aaf9
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 21 lines (17 sloc) 379 Bytes
set -e
TARGET=hypothesis-testing-chamber
rm -rf ./dist
rm -rf ./$TARGET
mkdir -p $TARGET
virtualenv $TARGET/venv
BINDIR=$(pwd)/$TARGET/venv/bin
PYTHON=$BINDIR/python
PIP=$BINDIR/pip
$PYTHON setup.py sdist
$PIP install dist/*
cd $TARGET
$PYTHON -c '
from __future__ import print_function
from hypothesis import falsify
print(falsify(lambda x, y: x + y == y + x, str, str))
'