We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a44d5 commit 0f5c180Copy full SHA for 0f5c180
test/unit_tests/dyna/test_d3plot_header.py
@@ -1,6 +1,7 @@
1
from unittest import TestCase
2
3
import numpy as np
4
+import warnings
5
import pytest
6
from lasso.dyna.d3plot_header import (
7
D3plotFiletype,
@@ -13,7 +14,6 @@
13
14
15
class D3plotHeaderTest(TestCase):
16
- @pytest.mark.skip(reason="NOT IMPLEMENTED")
17
def test_loading(self):
18
19
filepaths = [
@@ -27,6 +27,7 @@ def test_loading(self):
27
D3plotHeader().load_file(filepath)
28
29
# TODO more
30
+ warnings.warn("No assertions of behavior, test is incomplete")
31
32
def test_get_digit(self) -> None:
33
0 commit comments