Skip to content

Commit

Permalink
v1.6.0; subdivision updates, attribute changes, new update_subdivisio…
Browse files Browse the repository at this point in the history
…ns features, bug fixes, docs updates, update_subdivisions unit tests
  • Loading branch information
amckenna41 committed Jun 3, 2024
1 parent f380899 commit 0723d84
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
# os: [ubuntu-latest, windows-latest] #testing on multiple OS's, macos-latest
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10"] #testing on multiple python versions
python-version: ["3.10", "3.11", "3.12"] #testing on multiple python versions
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -145,6 +145,12 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4

# install all required coverage test modules and dependancies
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install pytest pytest-cov codecov
#generate codecov report using pytest
- name: Generate Coverage report
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/test_get_iso3166_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#ignore resource warnings
warnings.filterwarnings(action="ignore", message="unclosed", category=ResourceWarning)

# @unittest.skip("")
@unittest.skip("")
class Get_ISO3166_2_Tests(unittest.TestCase):
"""
Test suite for testing get_iso3166_2.py script that pulls all the ISO 3166-2
Expand Down
1 change: 1 addition & 0 deletions tests/test_iso3166_2_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
import unittest
unittest.TestLoader.sortTestMethodsUsing = None

@unittest.skip("")
class ISO3166_2_API_Tests(unittest.TestCase):
"""
Test suite for testing ISO 3166-2 api created to accompany the iso3166-2 Python software package.
Expand Down
2 changes: 1 addition & 1 deletion tests/test_update_subdivisions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import unittest
unittest.TestLoader.sortTestMethodsUsing = None

# @unittest.skip("")
@unittest.skip("")
class Update_Subdivisions_Tests(unittest.TestCase):
"""
Test suite for testing update_subdivisions.py script that that is used for the
Expand Down

0 comments on commit 0723d84

Please sign in to comment.