Skip to content

Commit

Permalink
rename packing to include _integration
Browse files Browse the repository at this point in the history
  • Loading branch information
EUdds committed Dec 13, 2023
1 parent 4b4ed94 commit 5ff7e6c
Show file tree
Hide file tree
Showing 14 changed files with 52 additions and 48 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
84 changes: 44 additions & 40 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "inventree_digikey"
name = "inventree_digikey_integration"
version = "1.0.0"
description = "A CLI to import Digikey parts into an Inventree instance"
authors = ["Eric Udlis <udlis.eric@gmail.com>"]
Expand All @@ -22,4 +22,4 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
import_digikey_parts = "inventree_digikey.__main__:main"
import_digikey_parts = "inventree_digikey_integration.__main__:main"
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pickle
import os

from inventree_digikey.ConfigReader import ConfigReader
from inventree_digikey_integration.ConfigReader import ConfigReader

TEST_DATA_PATH = Path(__file__).resolve().parent / "test_data"

Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import inventree_digikey.__main__ as test_module
import inventree_digikey_integration.__main__ as test_module

from pathlib import Path

Expand Down
2 changes: 1 addition & 1 deletion tests/test_data/generate_test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

os.sys.path.append(str(Path(__file__).resolve().parent.parent.parent))

from inventree_digikey.Digikey import DigiPart
from inventree_digikey_integration.Digikey import DigiPart


TEST_DATA_PATH = Path(__file__).resolve().parent
Expand Down
2 changes: 1 addition & 1 deletion tests/test_digikey.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from inventree_digikey.Digikey import DigiPart
from inventree_digikey_integration.Digikey import DigiPart
from digikey.v3.api import DigikeyApiWrapper
import digikey

Expand Down
2 changes: 1 addition & 1 deletion tests/test_image_manager.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from inventree_digikey.ImageManager import ImageManager
from inventree_digikey_integration.ImageManager import ImageManager
import random
import pytest

Expand Down
2 changes: 1 addition & 1 deletion tests/test_inventree.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import pytest
import inventree_digikey.Inventree as test_module
import inventree_digikey_integration.Inventree as test_module
from configparser import ConfigParser
import inventree.company
import inventree.api
Expand Down

0 comments on commit 5ff7e6c

Please sign in to comment.