Skip to content

Commit

Permalink
No need to keep multiple dirs for tests. (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
mindflayer committed Sep 19, 2024
1 parent 4a1ed42 commit 23e0a53
Show file tree
Hide file tree
Showing 20 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ publish: clean install-test-requirements
uv run twine upload --repository mocket dist/*.tar.gz

clean:
rm -rf *.egg-info dist/ requirements.txt Pipfile.lock || true
rm -rf *.egg-info dist/ requirements.txt uv.lock || true
find . -type d -name __pycache__ -exec rm -rf {} \; || true

.PHONY: clean publish safetest test setup develop lint-python test-python _services-up
Expand Down
Empty file removed tests/main/__init__.py
Empty file.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from gevent import monkey

from tests.main.test_http import HttpEntryTestCase
from tests.test_http import HttpEntryTestCase

monkey.patch_socket()

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import requests

from mocket import Mocket, mocketize
from tests.main.test_http import HttpTestCase
from tests.test_http import HttpTestCase


class HttpEntryTestCase(HttpTestCase):
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion tests/tests38/README.txt

This file was deleted.

Empty file removed tests/tests38/__init__.py
Empty file.

0 comments on commit 23e0a53

Please sign in to comment.