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.
2 parents cc6eaae + 0b77d7f commit d35a4cfCopy full SHA for d35a4cf
.github/workflows/ci_tests.yml
@@ -54,5 +54,5 @@ jobs:
54
uses: codecov/codecov-action@v5
55
with:
56
token: ${{ secrets.CODECOV_TOKEN }}
57
- file: ./coverage.xml
+ files: ./coverage.xml
58
if: matrix.platform == 'ubuntu-latest'
petab/v1/mapping.py
@@ -43,9 +43,7 @@ def get_mapping_df(
43
44
for col in MAPPING_DF_REQUIRED_COLS:
45
if col not in mapping_file.columns:
46
- raise KeyError(
47
- f"Mapping table missing mandatory field {PETAB_ENTITY_ID}."
48
- )
+ raise KeyError(f"Mapping table missing mandatory field {col}.")
49
50
lint.assert_no_leading_trailing_whitespace(
51
mapping_file.reset_index()[col].values, col
0 commit comments