Skip to content

Commit

Permalink
Fix bad sorting test
Browse files Browse the repository at this point in the history
  • Loading branch information
aghozlane committed Mar 4, 2024
1 parent a8d1b24 commit bd0f6b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# Meteor

[![install with conda](https://img.shields.io/conda/vn/aghozlane/meteor?color=green&label=aghozlane%2Fmeteor&logo=anaconda)](https://anaconda.org/aghozlane/meteor)
[![Latest Release](https://forgemia.inra.fr/metagenopolis/meteor/-/badges/release.svg)](https://forgemia.inra.fr/metagenopolis/meteor/-/releases)
[![pipeline status](https://forgemia.inra.fr/metagenopolis/meteor/badges/dev/pipeline.svg)](https://forgemia.inra.fr/metagenopolis/meteor/-/commits/dev)
[![coverage report](https://forgemia.inra.fr/metagenopolis/meteor/badges/dev/coverage.svg)](https://forgemia.inra.fr/metagenopolis/meteor/-/commits/dev)
[![pylint](https://forgemia.inra.fr/metagenopolis/meteor/-/jobs/artifacts/dev/raw/pylint/pylint.svg?job=pylint)](https://forgemia.inra.fr/metagenopolis/meteor/-/jobs/artifacts/dev/raw/pylint/pylint.log?job=pylint)
[![Latest Release](https://img.shields.io/github/v/release/metagenopolis/meteor)](https://forgemia.inra.fr/metagenopolis/meteor/-/releases)
[![dockerhub](https://img.shields.io/docker/v/aghozlane/meteor?label=aghozlane/meteor&logo=docker)](https://hub.docker.com/r/aghozlane/meteor/)

## Introduction

Expand Down
2 changes: 1 addition & 1 deletion meteor/merging.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def compare_section_info(
where config parser information is stored as a dictionnary field: value
"""
# Define an ini file of reference
ref_config = list(all_sections_info.keys())[0]
ref_config = sorted(list(all_sections_info.keys()))[0]
logging.info("Use the ini file associated to %s as a reference.", ref_config)
# Compare all other entries to this reference
ref_comparison_bool = {
Expand Down

0 comments on commit bd0f6b9

Please sign in to comment.