Skip to content

Commit

Permalink
FIX : fix CI/CD scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
minwook-shin committed Apr 21, 2023
1 parent fee7940 commit 711be58
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-publish.yml
Expand Up @@ -36,6 +36,8 @@ jobs:
pip install build
- name: Build package
run: python -m build
- name: Install package
run: python setup.py install
- name: Test with unittest
run: python -m unittest -v
# - name: Publish package
Expand Down
2 changes: 1 addition & 1 deletion tests/test_children.py
@@ -1,6 +1,6 @@
import unittest

from src.notion_database.children import Children
from notion_database.children import Children


class TestChildrenMethods(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cover.py
@@ -1,6 +1,6 @@
import unittest

from src.notion_database.cover import Cover
from notion_database.cover import Cover


class TestCoverMethods(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_icon.py
@@ -1,6 +1,6 @@
import unittest

from src.notion_database.icon import Icon
from notion_database.icon import Icon


class TestIconMethods(unittest.TestCase):
Expand Down
2 changes: 1 addition & 1 deletion tests/test_properties.py
@@ -1,6 +1,6 @@
import unittest

from src.notion_database.properties import Properties
from notion_database.properties import Properties


class TestPropertyMethods(unittest.TestCase):
Expand Down

0 comments on commit 711be58

Please sign in to comment.