Skip to content

Commit

Permalink
fix: skip not yet implemented tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mjaquiery committed Dec 16, 2024
1 parent bc51c50 commit a5d49b5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_conversions.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import csv
from datetime import datetime
from time import sleep
from unittest import TestCase, main
from unittest import TestCase, main, skip

from trd_cli.conversions import (
extract_participant_info,
Expand Down Expand Up @@ -105,6 +105,7 @@ def test_convert_scores(self):
with self.subTest(q_name=q_code):
self.fail(f"Did not find a {q_code} row to test in data.")

@skip("Not implemented")
def test_convert_display_values(self):
raise NotImplementedError

Expand Down

0 comments on commit a5d49b5

Please sign in to comment.