Skip to content

Commit f032cb5

Browse files
committed
fix travis test
1 parent d6e7cea commit f032cb5

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ language: clojure
22
lein: 2.7.1
33
before_script:
44
- mkdir -p target
5-
script: make info test
5+
script: make info test-model
66
jdk:
77
- oraclejdk8

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# type of project, currently one of: clojure, python
44
PROJ_TYPE= clojure
5-
PROJ_MODULES=model
5+
PROJ_MODULES=nlpmodel
66

77
# make build dependencies
88
_ :=$(shell [ ! -d .git ] && git init ; [ ! -d zenbuild ] && \

test/zensols/nlparse/threadsafe_test.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55

66
(deftest in-test
77
(testing "testing threadsafe"
8-
(let [agent-count 500]
8+
(let [agent-count 10;500
9+
]
910
(is (= agent-count
1011
(let [utterance "My name is Paul Landes"
1112
correct-res (parse utterance)

zenbuild

0 commit comments

Comments
 (0)