Skip to content

Commit

Permalink
Merge pull request #2 from uliegecsm/hot-fix
Browse files Browse the repository at this point in the history
cicd: fix after adding __init__.py in #2
  • Loading branch information
maartenarnst authored Jul 4, 2024
2 parents e2560d4 + 4a80961 commit 622583c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Run tests.
run : |
PYTHONPATH=$PWD pytest tests/test_topology.py
python -m pytest tests/test_topology.py
install-as-package:
runs-on: [ubuntu-latest]
Expand All @@ -38,8 +38,8 @@ jobs:
- name: Install as package.
run : |
pip3 install git+https://github.com/uliegecsm/hwloc-xml-parser.git@${{ github.sha }}
pip install git+https://github.com/uliegecsm/hwloc-xml-parser.git@${{ github.sha }}
- name: Test package.
run : |
python3 -c "from hwloc_xml_parser.topology import SystemTopology; topo = SystemTopology()"
python -c "from hwloc_xml_parser.topology import SystemTopology; topo = SystemTopology()"

0 comments on commit 622583c

Please sign in to comment.