From 4d1d5d511d2d8ab306f7c9d1820033310f7cfc97 Mon Sep 17 00:00:00 2001 From: JonMcCullough Date: Mon, 4 Dec 2023 11:43:13 +0000 Subject: [PATCH 1/2] Update coveralls.yml Update build steps for EasyVVUQ and cannonsim --- .github/workflows/coveralls.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index b2b5bb66..5050dff3 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -28,8 +28,8 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - python setup.py develop - python setup.py build_cannonsim + python -m pip install --editable . + cd tests/cannonsim/src; make; cd ../../.. pip install pytest-cov pip install coveralls - name: Create coverage report From 5c6c117371a4c3bdb19444a21f70f245141ff2dc Mon Sep 17 00:00:00 2001 From: JonMcCullough Date: Mon, 4 Dec 2023 11:44:09 +0000 Subject: [PATCH 2/2] Update python-package.yml Update build instructions for EasyVVUQ and cannonsim --- .github/workflows/python-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 0dfdfcde..331adc67 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -28,8 +28,8 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - python setup.py develop - python setup.py build_cannonsim + python -m pip install --editable . + cd tests/cannonsim/src; make; cd ../../.. pip install pytest-cov pip install coveralls - name: Lint with flake8