Skip to content

Fix revenues summed too many times #1767

Fix revenues summed too many times

Fix revenues summed too many times #1767

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python application
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.11
- name: Run tests
run: |
python -m pip install --upgrade pip
pip install pipenv
cd Scripts
cp .env-win .env
pipenv --python 3.11 install --dev
pipenv run pytest -s tests