Skip to content

Commit

Permalink
rename(Package): from src to ppa to match
Browse files Browse the repository at this point in the history
  • Loading branch information
Saucisse à roulettes committed Jun 14, 2023
1 parent 0febb52 commit c3ebc0a
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: poetry install --no-interaction --no-root --with=dev

- name: Check syntax
run: poetry run black src --check
run: poetry run black ppa --check

- name: Check typing
run : poetry run mypy
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/test/test_in_memory.py → ppa/test/test_in_memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pytest

from src.in_memory import in_memory_repository
from ppa.in_memory import in_memory_repository


class User:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.3.0"
description = ""
authors = ["Saucisse À Roulette <gael.monachon.dev@gmail.com>"]
readme = "README.md"
packages = [{include = "src"}]
packages = [{include = "ppa"}]

[tool.poetry.dependencies]
python = "^3.11"
Expand All @@ -27,4 +27,4 @@ include = '\.pyi?$'

[tool.mypy]
python_version = 3.11
files = "src/"
files = "ppa/"

0 comments on commit c3ebc0a

Please sign in to comment.