File: development.rst

package info (click to toggle)
flit 3.12.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,504 kB
  • sloc: python: 6,691; makefile: 175; sh: 27
file content (25 lines) | stat: -rw-r--r-- 584 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Developing Flit
===============

To get a development installation of Flit itself::

    git clone https://github.com/pypa/flit.git
    cd flit
    python3 -m pip install docutils requests
    python3 bootstrap_dev.py

This links Flit into the current Python environment, so you can make changes
and try them without having to reinstall each time.

Testing
-------

To run the tests in separate environments for each available Python version::

    tox

`tox <https://tox.readthedocs.io/en/latest/>`_ has many options.

To run the tests in your current environment, run::

    pytest