-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
52 lines (46 loc) · 1.11 KB
/
datamanger.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Data Manager
on:
push:
branches:
- main
- 1.4.x
pull_request:
branches:
- main
- 1.4.x
env:
ENV_FILE: environment.yml
PANDAS_CI: 1
jobs:
data_manager:
name: Test experimental data manager
runs-on: ubuntu-latest
timeout-minutes: 120
services:
moto:
image: motoserver/moto
env:
AWS_ACCESS_KEY_ID: foobar_key
AWS_SECRET_ACCESS_KEY: foobar_secret
ports:
- 5000:5000
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-data_manager
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up pandas
uses: ./.github/actions/setup
- name: Run tests
env:
PANDAS_DATA_MANAGER: array
PATTERN: "not network and not clipboard and not single_cpu"
PYTEST_WORKERS: "auto"
PYTEST_TARGET: pandas
run: |
source activate pandas-dev
ci/run_tests.sh