Skip to content

Commit 70a8cf5

Browse files
lalmeiandyndang
authored andcommitted
downgraded, added remove fail fast for testing
1 parent 7ea9f16 commit 70a8cf5

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ jobs:
1212
# runs-on: ubuntu-latest
1313

1414
strategy:
15-
max-parallel: 4
15+
fail-fast: false
16+
max-parallel: 6
1617
matrix:
1718
python-version: [3.6, 3.7, 3.8]
18-
os: [ubuntu-latest, macOS-latest]
19+
os: [ubuntu-18.04, macOS-latest]
1920

2021
steps:
2122
- uses: actions/checkout@v2
@@ -45,7 +46,7 @@ jobs:
4546

4647
- name: Test & publish code coverage
4748
if: runner.os == 'ubuntu-latest' && ${{ matrix.python-version }} == 3.8
48-
uses: paambaati/codeclimate-action@v2.7.4
49+
uses: paambaati/codeclimate-action@v2.5.0
4950
env:
5051
CC_TEST_REPORTER_ID: 5f97bd2b70f7b44c97f3c88d2ecc7b5b25594c1eeacfe16cb6c5edd91e1527bd
5152

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# whylogs Library
2+
[![License](http://img.shields.io/:license-Apache%202-blue.svg)](https://github.com/whylabs/whylogs-python/blob/mainline/LICENSE)
23
[![PyPI version](https://badge.fury.io/py/whylogs.svg)](https://badge.fury.io/py/whylogs)
34
[![Python Version](https://img.shields.io/pypi/pyversions/whylogs)](https://pypi.org/project/whylogs/)
4-
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4490/badge)](https://bestpractices.coreinfrastructure.org/projects/4490)
55
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/python/black)
6-
[![License](http://img.shields.io/:license-Apache%202-blue.svg)](https://github.com/whylabs/whylogs-python/blob/mainline/LICENSE)
6+
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4490/badge)](https://bestpractices.coreinfrastructure.org/projects/4490)
77
[![PyPi Downloads](https://pepy.tech/badge/whylogs)](https://pepy.tech/project/whylogs)
88

9+
![CI](https://github.com/whylabs/whylogs-python/workflows/whylogs%20CI/badge.svg)
10+
[![Maintainability](https://api.codeclimate.com/v1/badges/442f6ca3dca1e583a488/maintainability)](https://codeclimate.com/github/whylabs/whylogs-python/maintainability)
11+
12+
13+
914
This is a Python implementation of whylogs. The Java implementation can be found [here](https://github.com/whylabs/whylogs-java).
1015

1116
Understanding the properties of data as it moves through applications is essential to keeping your ML/AI pipeline stable

0 commit comments

Comments
 (0)