"include/vscode:/vscode.git/clone" did not exist on "a36eb7e76f7ff6e80358aabfd2b6f1b2c04ad41d"
Unverified Commit a372ed50 authored by Nikita Titov's avatar Nikita Titov Committed by GitHub
Browse files

[dask] run Dask tests on aarch64 architecture (#3996)



* run Dask tests on aarch64 architecture

* make random Dask test to fail

* Revert "make random Dask test to fail"

This reverts commit c43c98507f818994bb08b4f7d289ecad3b3449eb.

* empty commit

* empty commit

* empty commit

* empty commit
Co-authored-by: default avatarJames Lamb <jaylamb20@gmail.com>
parent 4b1b4124
...@@ -7,7 +7,6 @@ import random ...@@ -7,7 +7,6 @@ import random
import socket import socket
from itertools import groupby from itertools import groupby
from os import getenv from os import getenv
from platform import machine
from sys import platform from sys import platform
import pytest import pytest
...@@ -58,8 +57,7 @@ task_to_local_factory = { ...@@ -58,8 +57,7 @@ task_to_local_factory = {
pytestmark = [ pytestmark = [
pytest.mark.skipif(getenv('TASK', '') == 'mpi', reason='Fails to run with MPI interface'), 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')
] ]
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment