Skip to content

Commit

Permalink
Update test_dask.py
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS authored Feb 12, 2021
1 parent 3c0b6c4 commit fad0b69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/python_package_test/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import pickle
import socket
from itertools import groupby
from platform import machine
from os import getenv
from sys import platform

Expand Down Expand Up @@ -42,7 +43,8 @@

pytestmark = [
pytest.mark.skipif(getenv('TASK', '') == 'mpi', reason='Fails to run with MPI interface'),
pytest.mark.skipif(getenv('TASK', '') == 'gpu', reason='Fails to run with GPU interface')
pytest.mark.skipif(getenv('TASK', '') == 'gpu', reason='Fails to run with GPU interface'),
pytest.mark.skipif(machine() != 'x86_64', reason='Fails to run with non-x86_64 architecture')
]


Expand Down

0 comments on commit fad0b69

Please sign in to comment.