Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
Undo changes to conftest.py and .travis.yml to support Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
critical-path committed Sep 27, 2019
1 parent 981f5c1 commit 6caef1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ sudo: false
language: python

python:
- "3.5"
- "3.6"
- "3.7"

Expand Down
6 changes: 3 additions & 3 deletions test/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def oui_file(tmp_path):
file.write_text("Assignment,\na0b1c2,\n")

# Yield the file.
yield file.as_posix()
yield file


# This fixture approximates `cid.csv`.
Expand All @@ -39,7 +39,7 @@ def cid_file(tmp_path):
file.write_text("Assignment,\n0a1b2c,\n")

# Yield the file.
yield file.as_posix()
yield file


# This fixture represents the output of
Expand Down Expand Up @@ -142,4 +142,4 @@ def pickle_file(tmp_path):
file = subdirectory.joinpath("test-classifier.pickled")

# Yield the path to the pickle file.
yield file.as_posix()
yield file

0 comments on commit 6caef1f

Please sign in to comment.