Skip to content

Commit

Permalink
Fix for PR#85
Browse files Browse the repository at this point in the history
  • Loading branch information
JunCEEE committed Jan 12, 2024
1 parent 002537a commit f590ea5
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 19 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,14 @@ jobs:
cd
- name: Test SimEx-Lite
run: |
# Install pysingfel backend from the simex branch
pip install git+https://github.com/JunCEEE/pysingfel.git@simex

# Install and test SimEx-Lite
git clone --recursive https://github.com/PaNOSC-ViNYL/SimEx-Lite.git
cd SimEx-Lite
pip install -e .
git clone https://github.com/PaNOSC-ViNYL/SimEx-Lite-testFiles testFiles
git clone -b simex https://github.com/JunCEEE/pysingfel.git
cd pysingfel
pip install ./
cd ..
pytest tests

- name: Install development dependencies
Expand Down
2 changes: 1 addition & 1 deletion libpyvinyl/BaseCalculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class BaseCalculator(AbstractBaseClass):
"""
Base class of all calculators.
This class is provides the libpyvinyl API. It defines all methods
This class provides the libpyvinyl API. It defines all methods
through which a user interacts with the simulation backengines.
This class is to be used as a base class for all calculators that implement
Expand Down
3 changes: 1 addition & 2 deletions libpyvinyl/BaseFormat.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

class BaseFormat(AbstractBaseClass):
"""
The abstract format class.
It's the interface of a certain data format.
The abstract format class which serves as the common interface for derived format classes.
"""

def __init__(self):
Expand Down
19 changes: 9 additions & 10 deletions tests/integration/plusminus/requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
pip
bump2version
wheel
watchdog
flake8
tox
coverage
Sphinx
twine
sphinx_rtd_theme

pytest
pytest-runner
bump2version==0.5.11
wheel==0.33.6
watchdog==0.9.0
flake8==3.7.8
tox==3.14.0
coverage==4.5.4
Sphinx==3.5.2
twine==1.14.0
sphinx_rtd_theme==0.5.1

0 comments on commit f590ea5

Please sign in to comment.