Update mt.py #719
This file contains hidden or 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: TestingInConda | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
setup-build: | |
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-latest"] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
conda-channels: conda-forge | |
python-version: ${{ matrix.python-version }} | |
- name: Install Env | |
shell: bash | |
run: | | |
python --version | |
conda env create -f environment.yml | |
source ~/.profile | |
conda init --all | |
conda activate mtpy-v2-test | |
pip install git+https://github.com/simpeg/pydiso.git | |
conda install pytest | |
conda install pytest-subtests | |
conda install pytest-cov | |
pip install git+https://github.com/kujaku11/mt_metadata.git@features | |
pip install git+https://github.com/kujaku11/mth5.git@features | |
pip install git+https://github.com/simpeg/aurora@features | |
git clone https://github.com/MTgeophysics/mtpy_data.git | |
cd mtpy_data | |
pip install -e . | |
cd .. | |
- name: Install Our Package | |
shell: bash | |
run: | | |
source ~/.profile | |
conda init --all | |
conda activate mtpy-v2-test | |
pip install -e . | |
conda list | |
- name: Run Tests | |
shell: bash | |
run: | | |
source ~/.profile | |
conda init --all | |
conda activate mtpy-v2-test | |
pytest --cov=./ --cov-report=xml --cov=mtpy | |
- name: "Upload coverage to Codecov" | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: false | |
verbose: true | |
flags: tests | |