Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No need to keep multiple dirs for tests #245

Merged
merged 1 commit into from
Sep 19, 2024
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
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.