Skip to content

Commit 503f91d

Browse files
committed
reactivate tests
1 parent 0d7aa2a commit 503f91d

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ defaults:
66
shell: bash
77

88
on: # Runs on any push event to any branch except master (the coverage workflow takes care of that)
9-
workflow_dispatch
10-
# push:
11-
# branches-ignore:
12-
# - 'master'
9+
push:
10+
branches-ignore:
11+
- 'master'
1312

1413
jobs:
1514
tests:

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@
1111
}
1212
],
1313
"title": "ir_amplitude_detuning",
14-
"description": "Python 3 package for dodecapole corrections in the LHC insertion regions."
14+
"description": "Python tools to correct amplitude detuning in the insertion regions of a particle accelerator.."
1515
}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
#### v1.0.0 - 2025-10-XX
3+
#### v1.0.0 - 2025-12-XX
44

55
- Initial release
66
- Examples: `2018_md3311`, `2022_commissioning` and `2022_md6863`

ir_amplitude_detuning/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = "ir_amplitude_detuning"
2-
__description__ = "Tools to correct amplitude detuning in the Insertion Regions."
2+
__description__ = "Tools to correct amplitude detuning in the Insertion Regions of a particle accelerator."
33
__url__ = "https://github.com/pylhc/ir_amplitude_detuning"
44
__version__ = "1.0.0"
55
__author__ = "pylhc"

ir_amplitude_detuning/detuning/measurements.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
import logging
1111
from dataclasses import dataclass
12-
from functools import partial
1312
from typing import TYPE_CHECKING, Self
1413

1514
import numpy as np

0 commit comments

Comments
 (0)