Skip to content

Commit

Permalink
[dask] run Dask tests on aarch64 architecture (#3996)
Browse files Browse the repository at this point in the history
* run Dask tests on aarch64 architecture

* make random Dask test to fail

* Revert "make random Dask test to fail"

This reverts commit c43c985.

* empty commit

* empty commit

* empty commit

* empty commit

Co-authored-by: James Lamb <jaylamb20@gmail.com>
  • Loading branch information
StrikerRUS and jameslamb authored May 21, 2021
1 parent 4b1b412 commit a372ed5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tests/python_package_test/test_dask.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
import socket
from itertools import groupby
from os import getenv
from platform import machine
from sys import platform

import pytest
Expand Down Expand Up @@ -58,8 +57,7 @@

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(machine() != 'x86_64', reason='Fails to run with non-x86_64 architecture')
pytest.mark.skipif(getenv('TASK', '') == 'gpu', reason='Fails to run with GPU interface')
]


Expand Down

0 comments on commit a372ed5

Please sign in to comment.