Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions tests/test_cycling.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

class TestParseCyclingTCX(TestCase):
def setUp(self):
"""
TCX file test2.tcx was taken from the following dataset:
S. Rauter, I. Jr. Fister, I. Fister. A collection of sport activity files
for data analysis and data mining.
Technical report 0201, University of Ljubljana and University of Maribor, 2015.
"""
tcx_file = "test2.tcx"
path = os.path.join(os.path.dirname(__file__), "files", tcx_file)
self.tcx = TCXParser(path)
Expand Down