Skip to content

Commit

Permalink
patch: changed license to apache 2.0; now calculating code coverage a…
Browse files Browse the repository at this point in the history
…nd logging to codecov
  • Loading branch information
phitoduck committed Nov 16, 2023
1 parent a41a656 commit 70ac83f
Show file tree
Hide file tree
Showing 9 changed files with 569 additions and 1,154 deletions.
7 changes: 7 additions & 0 deletions .c8rc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"sourceMap": true,
"all": true,
"include": ["out/**"],
"exclude": ["**/node_modules/**", "out/test/"],
"reporter": ["html", "text-summary", "lcov"]
}
4 changes: 4 additions & 0 deletions .github/workflows/build-test-lint-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ jobs:
run: npm install
- name: Run Headless Tests
run: xvfb-run -a npm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

assert-version-has-been-bumped:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ dev-utils/volumes/opt/clearml/logs
dev-utils/volumes/opt/clearml/config/generated_credentials.env
dev-utils/volumes/opt/clearml/config/clearml.conf
dev-utils/volumes/usr
*.log
*.log
coverage
876 changes: 202 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# `vscode-clearml-session-manager`

_The easiest way to connect to [ClearML Sessions](https://github.com/allegroai/clearml-session#readme)--one of the best remote workstation offerings in the MLOps space. (comparison of ClearML vs others [here](https://www.linkedin.com/posts/eric-riddoch_mlops-concept-i-am-obsessed-with-remote-activity-7115239643876380672-iRu1?utm_source=share&utm_medium=member_desktop))_

---
[![license](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](./LICENSE)

> ⚠️ **Disclaimer:** this is an unofficial, community-maintained VS Code extension. While, we hope this extension is useful for you, you use it at your own risk--per the [open-source GPL 3.0 License](./LICENSE) used by this project. Allegro AI, the company behind ClearML, is not liable for issues if any arise from using this extension.
_The easiest way to connect to [ClearML Sessions](https://github.com/allegroai/clearml-session#readme)--one of the best remote workstation offerings in the MLOps space. (comparison of ClearML vs others [here](https://www.linkedin.com/posts/eric-riddoch_mlops-concept-i-am-obsessed-with-remote-activity-7115239643876380672-iRu1?utm_source=share&utm_medium=member_desktop))_

> 💬 We're looking for contributors! See the [contributing](#contributing) section below.
Expand Down

0 comments on commit 70ac83f

Please sign in to comment.