Skip to content

Commit 9a2a9ea

Browse files
authored
Revert "Add a flag indicating whether check subruns' configs" (#965)
* Revert "Add a flag indicating whether check subruns' configs (#964)" This reverts commit 0fa6d17. * Use 3.x container for 3.x test
1 parent 0fa6d17 commit 9a2a9ea

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/pytest.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,11 @@ jobs:
3636
python-version: ${{ matrix.python-version }}
3737
- name: Install dependencies
3838
run: sudo apt-get install -y graphviz
39-
- name: Install requirements
39+
- name: Install requirements for Python 3.10
40+
if: matrix.python-version == '3.10'
41+
run: pip install git+https://github.com/XENONnT/base_environment.git@el7.2025.01.3 --force-reinstall
42+
- name: Install requirements for Python 3.11
43+
if: matrix.python-version == '3.11'
4044
run: pip install git+https://github.com/XENONnT/base_environment.git --force-reinstall
4145
- name: Start MongoDB
4246
uses: supercharge/mongodb-github-action@1.11.0

strax/context.py

-6
Original file line numberDiff line numberDiff line change
@@ -164,12 +164,6 @@
164164
type=bool,
165165
help='If True, save superruns as rechunked "new" data.',
166166
),
167-
strax.Option(
168-
name="check_superrun_configs",
169-
default=True,
170-
type=bool,
171-
help="If True, check whether all subruns' config are the same.",
172-
),
173167
)
174168
@export
175169
class Context:

0 commit comments

Comments
 (0)