From 28b2d0aef06a76853c3461133c099fbb667733c9 Mon Sep 17 00:00:00 2001 From: Rob Sanderson Date: Sat, 9 Nov 2019 14:24:05 -0600 Subject: [PATCH] add 3.8, remove debug --- .circleci/config.yml | 2 +- .travis.yml | 1 + tests/test_model.py | 2 -- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 55fd3e7..0aee2e5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: docker: # specify the version you desire here # use `-browsers` prefix for selenium tests, e.g. `3.6.1-browsers` - - image: circleci/python:3.6.1 + - image: circleci/python:3.8.0 # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images diff --git a/.travis.yml b/.travis.yml index fefe0bd..dfbd043 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ python: - '2.7' - '3.6' - '3.7' + - '3.8' install: - pip install coveralls ordereddict - python setup.py install diff --git a/tests/test_model.py b/tests/test_model.py index e66001e..64b64e9 100644 --- a/tests/test_model.py +++ b/tests/test_model.py @@ -535,8 +535,6 @@ def test_equality(self): from cromulent.model import factory place1 = self.nation('Belgium', 'http://vocab.getty.edu/aat/300128207') place2 = self.nation('Belgium', 'http://vocab.getty.edu/aat/300128207') - print(factory.toString(place1, False)) - print(factory.toString(place2, False)) self.assertEqual(place1, place2) if __name__ == '__main__':