Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/tester.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: 3.6
- name: Install dependencies
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
pip install python-dateutil pytest
pip install .
pip install -r ./test/perf/requirements.txt
- name: Install poetry
run: |
pip install poetry
- name: Install receptor and its dev/test dependencies
run: |
poetry install
- name: Perform integration tests
run: |
pytest ./test/perf/ -s
poetry run pytest ./test/perf/ -s
unit:
name: Unit Tests
runs-on: ubuntu-latest
Expand Down
65 changes: 64 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ pytest-asyncio = "^0.10.0"
flake8 = "^3.7.9"
pyyaml = "^5.2"
wait-for = "^1.1.1"
attrs = "^19.3.0"
click = "^7.0"
pyparsing = "^2.4.5"
requests = "^2.22.0"
wait_for = "^1.1.1"

[build-system]
requires = ["poetry>=0.12"]
Expand Down
6 changes: 0 additions & 6 deletions test/perf/requirements.txt

This file was deleted.