Index

lognestmonster / d372f11

A general-purpose single-header C logging library and parser for event-based logs. (Incomplete)

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
10611 Sep 2019 19:24d372f11Overwrite test script for Windows to alias python3 for pythonJosh Stockin120N

Blob @ lognestmonster / .travis.yml

text/plain603 bytesdownload raw
1language: python
2python:
3 - "3.4"
4 - "3.5"
5 - "3.6"
6 - "3.7"
7 - "3.7-dev"
8 - "3.8-dev"
9 - "nightly"
10matrix:
11 include:
12 - name: "Python 3.7.4 on macOS"
13 os: osx
14 osx-image: xcode11
15 language: shell
16 - name: "Python 3.7.4 on Windows"
17 os: windows
18 language: shell
19 before_install:
20 - choco install python
21 - python -m pip install --upgrade pip
22 script:
23 - alias python3=python
24 - ./test
25 env: PATH=/c/Python37:/c/Python37/Scripts:$PATH
26 allow_failures:
27 - os: windows
28install: pip3 install --upgrade pip
29script: ./test
30