Skip to content

Commit 913c72c

Browse files
author
root
committedSep 27, 2018
Merge branch 'htcondorce'
2 parents 1eb0f84 + a7614dd commit 913c72c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3317
-780
lines changed
 

‎.travis.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,19 @@ language: python
22
python:
33
- "2.6"
44
- "2.7"
5-
- "3.5"
5+
- "nightly"
66
matrix:
77
allow_failures:
8-
- python: "3.5"
8+
- python: "nightly"
99
fast_finish: true
1010

1111
# Route build to container-based infrastructure
1212
sudo: false
13+
1314
# Cache the dependencies installed by pip
1415
cache: pip
16+
# Avoid pip log from affecting cache
17+
before_cache: rm -fv ~/.cache/pip/log/debug.log
1518

1619
# Install defaults to "pip install -r requirements.txt"
1720

@@ -20,7 +23,6 @@ before_script:
2023
- export PYTHONPATH=$PYTHONPATH:`pwd -P`
2124
- cd test
2225

23-
# Command to run tests
24-
script: coverage run --source=apel,bin -m unittest2 discover --buffer
26+
script: coverage run --branch --source=apel,bin -m unittest2 discover --buffer
2527

2628
after_success: coveralls

‎CHANGELOG

+19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
Changelog for apel
22
==================
3+
* Tue Jun 05 2018 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.7.0-1
4+
- [server] Long running VM support: Cloud VMs that run over month boundaries
5+
will now have their usage in each month assigned to the correct month.
6+
7+
* Mon Apr 16 2018 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.2-1
8+
- [parsers] Added remaining job statuses for SLURM that indicate the job has
9+
stopped and that resources have been used.
10+
- [server] Fix CpuCount being NULL in cloud accounting records and leading to
11+
warnings when summarising.
12+
- [docs] Remove references to specific LSF versions as all now allowed.
13+
14+
* Thu Dec 14 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.1-1
15+
- [parsers] Removed version restriction from LSF parser so that it can
16+
additionally work with version 10 onwards.
17+
- Added more columns to cloud summaries primary key to prevent mis-grouping.
18+
- Added Python setup script to enable installation on non-RHEL-based systems.
19+
- Made the updating of record timestamps in the database explicit.
20+
- Added type checking to float and datetime fields in the Python code.
21+
322
* Fri Mar 10 2017 Adrian Coveney <adrian.coveney@stfc.ac.uk> - 1.6.0-1
423
- Added support for mixed time formats used in Torque 5.1.3.
524
- Changed the way core count is parsed to support Torque 5.1.0.

0 commit comments

Comments
 (0)
Please sign in to comment.