unit tests: don't hard-code arch in compiler config (#36360)

This breaks when testing on non-x86_64 machines outside CI
This commit is contained in:
Harmen Stoppels 2023-03-23 23:22:45 +01:00 committed by GitHub
parent 2d9c913eb1
commit 118d8e4f57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2114,7 +2114,6 @@ def test_compiler_match_constraints_when_selected(self):
"fc": "/usr/bin/gfortran",
},
"operating_system": "debian6",
"target": "x86_64",
"modules": [],
}
},
@ -2128,7 +2127,6 @@ def test_compiler_match_constraints_when_selected(self):
"fc": "/usr/bin/gfortran",
},
"operating_system": "debian6",
"target": "x86_64",
"modules": [],
}
},
@ -2150,7 +2148,6 @@ def test_compiler_with_custom_non_numeric_version(self, mock_executable):
"spec": "gcc@foo",
"paths": {"cc": gcc_path, "cxx": gcc_path, "f77": None, "fc": None},
"operating_system": "debian6",
"target": "x86_64",
"modules": [],
}
}