remove residule traces dependencies

This commit is contained in:
Marcell Vazquez-Chanlatte 2018-09-24 01:02:00 -07:00
parent 266898c8ec
commit 417d17781e
2 changed files with 1 additions and 12 deletions

View file

@ -1,20 +1,10 @@
# -*- coding: utf-8 -*-
from hypothesis import given
from traces import TimeSeries
import mtl
from mtl.hypothesis import MetricTemporalLogicStrategy
TS = {
"ap1": TimeSeries([(0, True), (0.1, True), (0.2, False)]),
"ap2": TimeSeries([(0, False), (0.2, True), (0.5, False)]),
"ap3": TimeSeries([(0, True), (0.1, True), (0.3, False)]),
"ap4": TimeSeries([(0, False), (0.1, False), (0.3, False)]),
"ap5": TimeSeries([(0, False), (0.1, False), (0.3, True)]),
}
@given(MetricTemporalLogicStrategy)
def test_stablizing_repr(phi):
for _ in range(10):

View file

@ -1,9 +1,8 @@
-e git://github.com/mvcisback/hypothesis-cfg@master#egg=hypothesis-cfg
attrs==18.1.0
funcy==1.9.1
lenses==0.4.0
parsimonious==0.7.0
discrete-signals==0.7.1
discrete-signals==0.7.2
hypothesis==3.32.1
pytest==3.2.3