Skip to content

Commit

Permalink
Debug unit testing
Browse files Browse the repository at this point in the history
  • Loading branch information
noahbroyles committed Jan 9, 2023
1 parent cab8bb6 commit 2e1c821
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,7 @@ jobs:
- name: Test with pytest
run: |
pytest
PYTHONPATH="$(pwd)"
pwd
ls
python -m pytest
6 changes: 3 additions & 3 deletions secsie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
A small library for parsing configuration files.
Supports secsie and ini formats. Not suitable for writing .ini files, but reads them just fine.
"""
from secsie.exceptions import InvalidSyntax
from secsie.parser import parse_config, parse_config_file
from secsie.generator import generate_config, generate_config_file
from .exceptions import InvalidSyntax
from .parser import parse_config, parse_config_file
from .generator import generate_config, generate_config_file


__version__ = '3.0.2'
Expand Down

0 comments on commit 2e1c821

Please sign in to comment.