Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ BINDIR = $(PWD)/.state/env/bin

test: .state/env/pyvenv.cfg
$(BINDIR)/pytest
$(BINDIR)/python -m tester
$(BINDIR)/python -m tests.lib

lint: .state/env/pyvenv.cfg
$(BINDIR)/black --check tests tester trove_classifiers
$(BINDIR)/black --check tests trove_classifiers

reformat: .state/env/pyvenv.cfg
$(BINDIR)/black tests tester trove_classifiers
$(BINDIR)/black tests trove_classifiers

.PHONY: build test lint reformat
File renamed without changes.
2 changes: 1 addition & 1 deletion tester/__main__.py → tests/lib/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from tester import trove_tester
from tests.lib import trove_tester
from trove_classifiers import classifiers, deprecated_classifiers

trove_tester(classifiers, deprecated_classifiers)
2 changes: 1 addition & 1 deletion tests/test_tester.py → tests/test_classifiers.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

from tester import trove_tester, InvalidClassifier
from tests.lib import trove_tester, InvalidClassifier


@pytest.mark.parametrize(
Expand Down