Skip to content

Commit

Permalink
Tests (14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Blank committed Mar 9, 2021
1 parent 2370368 commit d0f3ab2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pip install -r tests/requirements.txt
- name: Install pymoo
run: |
pip install .
pip install -e . -v
rm -rf pymoo
- name: List Directory
run: |
Expand Down
2 changes: 1 addition & 1 deletion tests/problems/test_problems_mw.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def test_mw(name):
problem = get_problem(name)

X, F, CV = load(name.upper(), suffix=["mw"])
X, F, CV = load(name.upper(), suffix=["MW"])
_F, _CV = problem.evaluate(X, return_values_of=["F", "CV"])

np.testing.assert_allclose(_F, F)
Expand Down

0 comments on commit d0f3ab2

Please sign in to comment.