diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-09-23 09:40:10 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-09-23 09:40:10 -0500 |
commit | d670d95c56b67fe8e684e00961d942bd7c4868cc (patch) | |
tree | 4d9664f97cd3454b3b23e39e2d9e52fa6339d6df | |
parent | I hate you VSCode (diff) | |
download | locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar.gz locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar.bz2 locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar.lz locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar.xz locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.tar.zst locusts-d670d95c56b67fe8e684e00961d942bd7c4868cc.zip |
Try to put Python all in the src/ folder
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | .github/workflows/python.yml | 2 | ||||
-rw-r--r-- | .vscode/settings.json | 2 | ||||
-rw-r--r-- | src/__init__.py (renamed from src/locusts-r-us/__init__.py) | 0 | ||||
-rw-r--r-- | src/locusts.py (renamed from src/locusts-r-us/locusts.py) | 0 | ||||
-rw-r--r-- | src/test_locusts.py (renamed from src/locusts-r-us/test_locusts.py) | 0 |
5 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 240049e..c1c7553 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -34,7 +34,7 @@ jobs: - name: Build run: python -m build - name: Test - run: python -m unittest discover -s src/locusts-r-us + run: python -m unittest discover -s src publish: name: Publish to PyPI diff --git a/.vscode/settings.json b/.vscode/settings.json index 526fc3c..9669844 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,7 +2,7 @@ "python.testing.unittestArgs": [ "-v", "-s", - "./src/locusts-r-us", + "./src", "-p", "test_*.py" ], diff --git a/src/locusts-r-us/__init__.py b/src/__init__.py index e69de29..e69de29 100644 --- a/src/locusts-r-us/__init__.py +++ b/src/__init__.py diff --git a/src/locusts-r-us/locusts.py b/src/locusts.py index f050133..f050133 100644 --- a/src/locusts-r-us/locusts.py +++ b/src/locusts.py diff --git a/src/locusts-r-us/test_locusts.py b/src/test_locusts.py index 68e6df7..68e6df7 100644 --- a/src/locusts-r-us/test_locusts.py +++ b/src/test_locusts.py |