• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

CCPBioSim / CodeEntropy / 19040521404

03 Nov 2025 03:50PM UTC coverage: 99.905% (-0.1%) from 100.0%
19040521404

Pull #170

github

web-flow
Merge 063daa253 into a6d704774
Pull Request #170: Add `Python v3.14` Support for `CodeEntropy`

1057 of 1058 relevant lines covered (99.91%)

10.99 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

92.86
/CodeEntropy/main.py
1
import logging
11✔
2
import sys
11✔
3

4
from CodeEntropy.run import RunManager
11✔
5

6
logger = logging.getLogger(__name__)
11✔
7

8

9
def main():
11✔
10
    """
11
    Main function for calculating the entropy of a system using the multiscale cell
12
    correlation method.
13
    """
14

15
    # Setup initial services
16
    folder = RunManager.create_job_folder()
11✔
17

18
    try:
11✔
19
        run_manager = RunManager(folder=folder)
11✔
20
        run_manager.run_entropy_workflow()
11✔
21
    except Exception as e:
11✔
22
        logger.critical(f"Fatal error during entropy calculation: {e}", exc_info=True)
11✔
23
        sys.exit(1)
11✔
24

25

26
if __name__ == "__main__":
11✔
27

28
    main()
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc