Metadata-Version: 2.4
Name: conda-store-server
Version: 2025.2.2
Summary: Conda Environment Management, Builds, and Serve
Project-URL: Homepage, https://conda.store/
Project-URL: Source, https://github.com/conda-incubator/conda-store
Project-URL: Issues, https://github.com/conda-incubator/conda-store/issues
Author-email: Christopher Ostrouchov <chris.ostrouchov@gmail.com>
Maintainer-email: Tania Allard <trallard@bitsandchips.me>, Pavithra Eswaramoorthy <pavithraes@outlook.com>, Peyton Murray <peynmurray@gmail.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: conda
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: <3.13,>=3.10
Requires-Dist: alembic
Requires-Dist: celery
Requires-Dist: conda-docker; sys_platform == 'linux'
Requires-Dist: conda-lock>=1.0.5
Requires-Dist: conda-pack
Requires-Dist: conda-package-handling
Requires-Dist: conda-package-streaming
Requires-Dist: fastapi
Requires-Dist: filelock
Requires-Dist: itsdangerous
Requires-Dist: jinja2
Requires-Dist: minio
Requires-Dist: platformdirs<5.0a0,>=4.0
Requires-Dist: pluggy
Requires-Dist: psycopg2-binary
Requires-Dist: pydantic>=2.0
Requires-Dist: pyjwt
Requires-Dist: pymysql
Requires-Dist: python-docker
Requires-Dist: python-multipart
Requires-Dist: pyyaml>=6.0.1
Requires-Dist: redis
Requires-Dist: requests
Requires-Dist: setuptools<70
Requires-Dist: sqlalchemy<2.1,>=2.0
Requires-Dist: traitlets
Requires-Dist: uvicorn
Requires-Dist: yarl
Description-Content-Type: text/markdown

# conda-store server

A multi-tenant server for managing conda environments.
See the [documentation](https://conda.store/) for more information.

## Running tests

### Run tests with pytest
```
# ignoring integration tests
$ python -m pytest -m "not extended_prefix and not user_journey" tests/

# ignoring long running tests
$ python -m pytest -m "not extended_prefix and not user_journey and not long_running_test" tests/
```

### Run tests with code coverage
Ensure you have pytest-cov install
```
$ pip install pytest-cov
```

Run tests
```
$ python -m pytest -m "not extended_prefix and not user_journey" --cov=conda_store_server tests/
```

Check coverage report
```
$ coverage report
```
