File tree Expand file tree Collapse file tree 2 files changed +54
-3
lines changed Expand file tree Collapse file tree 2 files changed +54
-3
lines changed Original file line number Diff line number Diff line change 5151 token : ${{ secrets.CODECOV_TOKEN }}
5252 fail_ci_if_error : true
5353 file : ./cli_coverage.xml
54+
55+ build-and-test-no-dandi :
56+ name : Testing using ${{ matrix.os }} with ${{ matrix.python-version }} without dandi dependencies
57+ runs-on : ${{ matrix.os }}
58+ strategy :
59+ fail-fast : false
60+ matrix :
61+ os : ["ubuntu-latest"]
62+ python-version : ["3.12"]
63+ steps :
64+ - uses : actions/checkout@v4
65+ - run : git fetch --prune --unshallow --tags
66+
67+ - name : Setup Python
68+ uses : actions/setup-python@v5
69+ with :
70+ python-version : ${{ matrix.python-version }}
71+
72+ - name : Install pytest
73+ run : pip install pytest
74+
75+ - name : Install package
76+ run : pip install .
77+
78+ - name : Run pytest with coverage
79+ run : pytest -rsx
Original file line number Diff line number Diff line change 55 CODECOV_TOKEN :
66 required : true
77
8- env :
9- TESTING_FILES_FOLDER_PATH : ./204919/testing_files/
10-
118jobs :
129 build-and-test :
1310 name : Testing using ${{ matrix.os }} with ${{ matrix.python-version }}
1714 matrix :
1815 os : ["ubuntu-latest", "macos-13", "windows-latest"]
1916 python-version : ["3.9", "3.10", "3.11", "3.12"]
17+ env :
18+ TESTING_FILES_FOLDER_PATH : ./204919/testing_files/
2019 steps :
2120 - uses : actions/checkout@v4
2221 - run : git fetch --prune --unshallow --tags
4645 token : ${{ secrets.CODECOV_TOKEN }}
4746 fail_ci_if_error : true
4847 file : ./coverage.xml
48+
49+ build-and-test-no-dandi :
50+ name : Testing using ${{ matrix.os }} with ${{ matrix.python-version }} without dandi dependencies
51+ runs-on : ${{ matrix.os }}
52+ strategy :
53+ fail-fast : false
54+ matrix :
55+ os : ["ubuntu-latest"]
56+ python-version : ["3.12"]
57+ steps :
58+ - uses : actions/checkout@v4
59+ - run : git fetch --prune --unshallow --tags
60+
61+ - name : Setup Python
62+ uses : actions/setup-python@v5
63+ with :
64+ python-version : ${{ matrix.python-version }}
65+
66+ - name : Install pytest
67+ run : pip install pytest
68+
69+ - name : Install package
70+ run : pip install .
71+
72+ - name : Run pytest with coverage
73+ run : pytest -rsx
You can’t perform that action at this time.
0 commit comments