Skip to content

Commit

Permalink
tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Apr 2, 2024
1 parent 11199e1 commit f409a31
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tests/gui/test_main.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import pytest
import time
import tkinter as tk
from unittest.mock import MagicMock

import pytest

from countess.core.config import read_config
from countess.core.pipeline import PipelineNode
from countess.gui.main import ConfiguratorWrapper, PluginChooserFrame, RunWindow, make_root
Expand Down
2 changes: 1 addition & 1 deletion tests/gui/test_tabular.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import pytest
import time

import numpy as np
import pandas as pd
import pytest

from countess.gui.main import make_root
from countess.gui.tabular import TabularDataFrame
Expand Down
1 change: 1 addition & 0 deletions tests/test_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"qux",12,9,8,7,999,0.10810810810810811
"""


@pytest.mark.slow
def test_command_invocation():
cmd_run(["countess_cmd", "tests/simple.ini"])
Expand Down
4 changes: 3 additions & 1 deletion tests/test_gui.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import pytest
import time

import pytest

from countess.core.config import write_config
from countess.gui.main import MainWindow, make_root


@pytest.mark.gui
def test_open_nodes():
root = make_root()
Expand Down

0 comments on commit f409a31

Please sign in to comment.