We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6250341 commit 5aec0efCopy full SHA for 5aec0ef
.circleci/config.yml
@@ -0,0 +1,21 @@
1
+version: 2.1
2
+
3
+jobs:
4
+ test-arm:
5
+ machine:
6
+ image: ubuntu-2004:202101-01
7
+ resource_class: arm.medium
8
+ environment:
9
+ ENV_FILE: ci/deps/circle-38-arm64.yaml
10
+ PYTEST_WORKERS: auto
11
+ PATTERN: "not slow and not network and not clipboard and not arm_slow"
12
+ PYTEST_TARGET: "pandas"
13
+ steps:
14
+ - checkout
15
+ - run: ci/setup_env.sh
16
+ - run: PATH=$HOME/miniconda3/envs/pandas-dev/bin:$HOME/miniconda3/condabin:$PATH ci/run_tests.sh
17
18
+workflows:
19
+ test:
20
+ jobs:
21
+ - test-arm
0 commit comments