• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Abjad / abjad / 5895
0%

Build:
DEFAULT BRANCH: master
Ran 08 Jan 2021 01:02AM UTC
Jobs 3
Files 0
Run time 46s
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

pending completion
5895

push

travis-ci-com

web-flow
Added tuplet improvements. (#1279)

NEW. Taught abjad.Tuplet to preserve tuplet ratio without reducing:

    >>> tuplet = abjad.Tuplet("6:4", "c'4 d' e'")
    >>> abjad.f(tuplet)
    \times 4/6 {
        c'4
        d'4
        e'4
    }

    >>> tuplet = abjad.Tuplet((4, 6), "c'4 d' e'")
    >>> abjad.f(tuplet)
    \times 4/6 {
        c'4
        d'4
        e'4
    }

NEW. Taught Abjad about LilyPond \tuplet command:

    >>> voice = abjad.Voice(r"\tuplet 6/4 { c'4 d' e' }")
    >>> string = abjad.lilypond(voice)
    >>> print(string)
    \new Voice
    {
        \times 4/6 {
            c'4
            d'4
            e'4
        }
    }

CHANGED. abjad.Tuplet.multiplier now returns a nonreduced fraction:

    OLD: abjad.Tuplet.multiplier returns abjad.Multiplier
    NEW: abjad.Tuplet.multiplier returns abjad.NonreducedFraction

CHANGED. abjad.Tuplet repr now shows colon string:

    OLD:

        >>> abjad.Tuplet("6:4", "c'4 d' e'")
        Tuplet(Multiplier(4, 6), "c'4 d'4 e'4")

    NEW:

        >>> abjad.Tuplet("6:4", "c'4 d' e'")
        Tuplet('6:4', "c'4 d'4 e'4")

FIXED. Defined explicit __copy__, __deepcopy__ on abjad.NonreducedFraction.

Tag #1244.

0 of 0 relevant lines covered (NaN%)

0.0 hits per line

Jobs
ID Job ID Ran Files Coverage
1 5895.1 08 Jan 2021 01:02AM UTC 0
0.0
Travis Job 5895.1
2 5895.2 08 Jan 2021 01:02AM UTC 0
0.0
Travis Job 5895.2
3 5895.3 08 Jan 2021 01:03AM UTC 0
0.0
Travis Job 5895.3
Source Files on build 5895
Detailed source file information is not available for this build.
  • Back to Repo
  • Build #5895
  • 1d58752e on github
  • Prev Build on master (#5888)
  • Next Build on master (#5900)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc