Skip to content

Commit 567504a

Browse files
committed
test
1 parent aa69aae commit 567504a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:16.10
22
RUN apt-get update && apt-get -y install python3-pip
33
RUN pip3 install matplotlib
44
RUN pip3 install "ipython[notebook]"
5-
5+
66
COPY . /fuzzy
77

8-
ENV PATH $HOME/.local/bin:$PATH
8+
ENV PATH $HOME/.local/bin:$PATH

test_functionality.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
21
"""
32
Functional test of the fuzzylogic lib 'fuzzy'.
43
"""
54

5+
66
from unittest import TestCase, skip
77

88
from fuzzy.classes import Domain, Set
@@ -54,4 +54,4 @@ def test_rating(self):
5454
assert (self.w_func(ratings) == 6.9)
5555

5656
if __name__ == '__main__':
57-
unittest.main()
57+
unittest.main()

0 commit comments

Comments
 (0)