Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test folder #204

Merged
merged 5 commits into from
Nov 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
pip install --upgrade --upgrade-strategy=only-if-needed -r test-requirements.txt
- name: Test with pytest
run: |
python -m pytest opem/Test --cov=opem --cov-report=term
python -m pytest test --cov=opem --cov-report=term
- name: Version check
run: |
python otherfile/version_check.py
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `README.md` modified
- `INSTALL.md` modified
- Test system modified
- Test files moved to `test` folder
- Setup system modified
- CLI mode updated
- `description_control` function modified
Expand Down
2 changes: 1 addition & 1 deletion otherfile/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"Documents", "Padulles2.ipynb"): DOCUMENT_ITEMS, os.path.join(
"otherfile", "test.html"): HTML_ITEMS, os.path.join(
"opem", "Params.py"): PARAMS_ITEMS, os.path.join(
"opem", "Test", "test_Functions.py"): TEST_ITEMS, os.path.join(
"test", "test_Functions.py"): TEST_ITEMS, os.path.join(
"otherfile", "meta.yaml"): META_ITEMS,
"OPEM.spec": SPEC_ITEMS}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def read_description():

setup(
name='opem',
packages=['opem', 'opem.Static', 'opem.Dynamic', 'opem.Test'],
packages=['opem', 'opem.Static', 'opem.Dynamic'],
version='1.3',
description='Open Source PEM Cell Simulation Tool',
long_description=read_description(),
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading