Skip to content
This repository has been archived by the owner on Mar 12, 2021. It is now read-only.

Commit

Permalink
add env secret
Browse files Browse the repository at this point in the history
  • Loading branch information
RileyMShea committed Feb 21, 2021
1 parent 006834e commit eb4b8b1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ jobs:
env:
SKIP: pytest-check
tests:
needs: pre-commit
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
env:
Expand Down Expand Up @@ -66,6 +65,8 @@ jobs:
run: python -m poetry install

- name: Run pytest
env:
POLYGON_KEY_ID: ${{secrets.POLYGON_KEY_ID}}
shell: bash
run: |
python -m poetry run python -m pytest --cov=./ --cov-report=xml
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "upoly"
version = "0.1.25"
version = "0.1.26"
description = "High performance asyncio REST client for polygon.io"
authors = ["Riley <[email protected]>"]
license = "AGPL"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_upoly.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@


def test_version() -> None:
assert __version__ == "0.1.25"
assert __version__ == "0.1.26"


def test_create_dataset_from_polygon():
Expand Down
2 changes: 1 addition & 1 deletion upoly/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.25"
__version__ = "0.1.26"

from .polygon_plus import NY as NY
from .polygon_plus import async_polygon_aggs as async_polygon_aggs

0 comments on commit eb4b8b1

Please sign in to comment.