Skip to content

Commit

Permalink
Add set of optional test requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Aug 17, 2023
1 parent b2dabb6 commit 03b5c8d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ ADD . /app_lib/so3g

# Install any needed packages specified in requirements.txt
RUN pip3 install -r requirements.txt
RUN pip3 install -r test-requirements.txt

# Install qpoint
RUN /bin/bash /app_lib/so3g/docker/qpoint-setup.sh
Expand Down
7 changes: 0 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,4 @@ sqlalchemy
pysqlite3-wheels
tqdm
cmake

# Required for full pointing support and testing
pixell
qpoint

# testing
pytest
pytest-cov
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,7 @@ def readme():
"sqlalchemy",
"pysqlite3-wheels",
"tqdm",
"qpoint",
]

# Since the so3g python package is in a directory called "python", we can't use the
Expand Down
5 changes: 5 additions & 0 deletions test-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# testing
pytest
pytest-cov
# Required for full pointing support and testing
pixell

0 comments on commit 03b5c8d

Please sign in to comment.