Skip to content

Commit

Permalink
Add logging configuration in tests/test_examples
Browse files Browse the repository at this point in the history
Logging configuration is part from each test file begging from commit
03b15fb
We should that as well for tests/test_examples.py

Signed-off-by: Martin Vrachev <[email protected]>
  • Loading branch information
MVrachev committed Dec 7, 2021
1 parent 53a2599 commit b0297b5
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@
import glob
import os
import shutil
import sys
import tempfile
import unittest
from pathlib import Path
from typing import ClassVar, List

from tests import utils


class TestRepoExamples(unittest.TestCase):
"""Unit test class for 'repo_example' scripts.
Expand Down Expand Up @@ -86,4 +89,5 @@ def test_basic_repo(self) -> None:


if __name__ == "__main__":
utils.configure_test_logging(sys.argv)
unittest.main()

0 comments on commit b0297b5

Please sign in to comment.