Skip to content

Commit

Permalink
Tests (15)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julian Blank committed Mar 9, 2021
1 parent ebc821c commit 6960fbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -r pymoo/requirements.txt
pip install -r Cython numpy
pip install -r tests/requirements.txt
- name: Install pymoo
run: |
Expand Down
2 changes: 0 additions & 2 deletions pymoo/requirements.txt

This file was deleted.

4 changes: 3 additions & 1 deletion tests/algorithms/test_no_error.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ def test_singe_obj(problem, algorithm):


ref_dirs = get_reference_directions("das-dennis", 2, n_partitions=99)
MULTI_OBJECTIVE_ALGORITHMS = [NSGA2(), GDE3(), RVEA(ref_dirs), MOEAD(ref_dirs), ParallelMOEAD(ref_dirs)]
MULTI_OBJECTIVE_ALGORITHMS = [NSGA2(),
# GDE3(),
RVEA(ref_dirs), MOEAD(ref_dirs), ParallelMOEAD(ref_dirs)]


@pytest.mark.parametrize('problem', MULTI_OBJECTIVE_PROBLEMS)
Expand Down

0 comments on commit 6960fbf

Please sign in to comment.