Skip to content

Commit

Permalink
Remove pytest from install_requires (#57)
Browse files Browse the repository at this point in the history
* remove pytest from requirements.txt

* Add dev_tools/pip-list

Co-authored-by: Nicholas Rubin <rubinnc0@gmail.com>
  • Loading branch information
r-imai-quantum and ncrubin authored Dec 26, 2020
1 parent d2b000b commit 60ddc08
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on: [pull_request]

jobs:
pytest:
name: Pytest Ubuntu
name: Pytest Ubuntu python3.6
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
Expand All @@ -29,13 +29,12 @@ jobs:
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r ./dev_tools/pip-list
- name: Pytest check
run: |
pip install pytest
pytest
pytest37:
name: Pytest Ubuntu
name: Pytest Ubuntu python3.7
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v1
Expand All @@ -45,8 +44,7 @@ jobs:
architecture: 'x64'
- name: Install requirements
run: |
pip install -r requirements.txt
pip install -r ./dev_tools/pip-list
- name: Pytest check
run: |
pip install pytest
pytest
3 changes: 3 additions & 0 deletions dev_tools/pip-list
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
pytest~=6.2.1
pyscf~=1.7.5.1
openfermion~=1.0.0
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
openfermion>=1.0
pyscf
pytest

0 comments on commit 60ddc08

Please sign in to comment.