diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 34ae77f..20d34d3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -83,7 +83,14 @@ jobs: - name: Test with pytest shell: pwsh run: | - pytest --doctest-modules + pytest --doctest-modules --cov-report=xml --cov=conda_auth + + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v2 + with: + flags: ${{ runner.os }},${{ matrix.python-version }} + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} unix-like: needs: changes @@ -130,4 +137,11 @@ jobs: - name: Test with pytest shell: micromamba-shell {0} run: | - pytest --doctest-modules + pytest --doctest-modules --cov-report=xml --cov=conda_auth + + - name: Upload Coverage to Codecov + uses: codecov/codecov-action@v2 + with: + flags: ${{ runner.os }},${{ matrix.python-version }} + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/docs/dev/changelog.md b/docs/dev/changelog.md index 661bd37..fd45268 100644 --- a/docs/dev/changelog.md +++ b/docs/dev/changelog.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. > The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -> and this project adheres to [Semantic Versioning](https://semver.org/) in the `MAJOR.MINOR.PATCH`format. +> and this project adheres to [Zero Versioning](https://0ver.org/) in the `ZERO.RELEASE.PATCH`format. diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 087ff41..cc46570 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -6,8 +6,8 @@ package: version: {{ version }} source: - url: https://github.com/conda-incubataor/{{ name }}/archive/refs/tags/{{ version}}.tar.gz - sha256: 99f5b48d457d8983cc9727d1629722cffbf26302176bbf83d6b757096156a12c + url: https://github.com/conda-incubator/{{ name }}/archive/refs/tags/{{ version}}.tar.gz + sha256: ed3dfb20d3149ff5f2dbd7f8526cc6db254819d26f923a31c883180f8fd21f8a build: noarch: python @@ -18,11 +18,14 @@ requirements: host: - python >=3.8,<4.0 - pip + - setuptools-scm run: - python >=3.8.1,<4.0.0 - - conda + - click + - conda >=23.9.0 - keyring - requests + - ruamel.yaml test: imports: @@ -34,7 +37,7 @@ test: about: home: https://github.com/conda-incubator/conda-auth - summary: Conda plugin for various conda auth handlers + summary: Conda plugin for improved access to private channels license: BSD-3-Clause license_file: LICENSE @@ -42,4 +45,3 @@ extra: recipe-maintainers: - travishathaway - jezdez - - kenodegard