We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa69aae commit 567504aCopy full SHA for 567504a
Dockerfile
@@ -2,7 +2,7 @@ FROM ubuntu:16.10
2
RUN apt-get update && apt-get -y install python3-pip
3
RUN pip3 install matplotlib
4
RUN pip3 install "ipython[notebook]"
5
-
+
6
COPY . /fuzzy
7
8
-ENV PATH $HOME/.local/bin:$PATH
+ENV PATH $HOME/.local/bin:$PATH
test_functionality.py
@@ -1,8 +1,8 @@
1
"""
Functional test of the fuzzylogic lib 'fuzzy'.
from unittest import TestCase, skip
from fuzzy.classes import Domain, Set
@@ -54,4 +54,4 @@ def test_rating(self):
54
assert (self.w_func(ratings) == 6.9)
55
56
if __name__ == '__main__':
57
- unittest.main()
+ unittest.main()
0 commit comments