Skip to content

Commit

Permalink
Removed tests for Python 3.5 to avoid the problem with randomly order…
Browse files Browse the repository at this point in the history
…ed dictionaries
  • Loading branch information
sonofmun committed Jan 10, 2020
1 parent 6ab1c32 commit 3d2dd1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: python
python:
- "3.5"
- "3.6"
- "3.7"

install:
- pip install -r requirements.txt
Expand All @@ -20,4 +20,4 @@ deploy:
password: $PYPASS
on:
tags: true
python: "3.5"
python: "3.6"
2 changes: 1 addition & 1 deletion MyCapytain/resolvers/capitains/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ def parse(self, resource):
:param resource: List of folders
:return: An inventory resource and a list of CapitainsReadableMetadata metadata-objects
"""
id_to_coll = OrderedDict()
id_to_coll = dict()
members = dict()
parents = dict()
invalids = []
Expand Down

0 comments on commit 3d2dd1f

Please sign in to comment.