get_current_price API로 다수의 티커가 입력되는 경우 200개씩 분할해서 #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run All Tests | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: szenius/[email protected] | |
with: | |
timezoneLinux: "Asia/Seoul" | |
- uses: actions/checkout@master | |
- name: Set up Python | |
uses: actions/setup-python@master | |
with: | |
python-version: '3.9' | |
- name: Install Dependencies | |
run: | | |
python -m pip install -U pip wheel | |
pip install -r requirements.txt | |
- name: Run All Tests | |
run: | | |
pip install pytest | |
pytest | |
env: | |
PYTHONPATH: .:$PYTHONPATH |